@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body {
    background-color: rgb(0, 0, 0);
    background-size: 100vw;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

#author {
    z-index: -1000;
    font-size: 100%;
    position: absolute;
}

.content {
    z-index: 100;
}

#popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
    background-color: rgb(0, 0, 0, 0.5);
}

#popup {
    font-weight: bold;
    font-size: 300%;
}

.passbar {
    z-index: 100;
    text-align: center;
    height: 10vh;
    width: 100%;
    font-size: 150%;
    align-content: center;
    justify-content: center;
    padding-bottom: 350px;
    clear: both;
}

.tiles {
    align-content: center;
    justify-content: center;
    font-size: 300%;
}

.passbartile {
    text-align: center;
    align-items: center;
    margin: 50;
    display: inline;
    float: left;
    width: 25%;
    padding-top: 30px;
    padding-bottom: 300px;
    color: #e100ff;
}

.passbartile:hover {
    color: rgb(0, 217, 255);
    background-color: #ffffff1e;
    font-weight: bold;
    padding-bottom: 0px;
}

.dropdown {
    font-family: 'Montserrat', sans-serif;
    border: none;
    background: none;
    cursor: pointer;
    display: block;
    padding: 15px;
    width: 100%;
    color: rgb(0, 217, 255);
    align-self: center;
    text-align: center;
    font-size: 70%;
}

.dropdown:hover {
    color: white;
    font-size: 75%;
}

.passbartile .dropdown {
    display: none;
}

.passbartile:hover .dropdown {
    display: block;
    font-weight: normal;
}

.copy {
    background-color: transparent;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-family: Arial;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
}

.copy:hover {
    background-color: transparent;
}

.copy:active {
    position: relative;
    top: 1px;
}

/* Login Form Styling */
.container {
    padding: 40px;
    border-radius: 10px;
    background: #1e1e1e;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 30%;
    margin: auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

input {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #2e2e2e;
    color: #e0e0e0;
}

#loginbutton {
    padding: 12px;
    border-radius: 5px;
    border: none;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#loginbutton:hover {
    background-color: #45a049;
}
