body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}


.banner-container {
    width: 100%;
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0; /* Remove any margin */
}

.banner {
    width: 100%;
    height: auto;
}

main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    background: #000;
    min-height: 200px; /* Adjust height to ensure it fits within the viewport */
}

.form-container {
    background-color: #0f1218;
    padding: 3.2em;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin-top: -35vh;
    margin-bottom: 10vh;
    z-index: 1; /* Ensure it stays above other elements */
}

h2 {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    align-self: flex-start;
    margin-bottom: 5px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    width: 100%;
}

.password-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.password-container input[type="password"] {
    flex: 1;
}

.peek-btn {
    margin-left: 10px;
    padding-bottom: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.2em;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    align-self: flex-start;
}

.checkbox-container label {
    margin-left: 5px;
}

.btn {
    background-color: #ffc107;
    color: #111;
    border: none;
    border-radius: 5px;
    padding: 10px 28px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: #141414;
    color: #ececec;
    border: Solid 1px #ffc80a;
}

.links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.links a {
    color: #FFC107;
    text-decoration: none;
}

.links a:hover {
    color: #e0a800;
}

.hint {
    padding-bottom: 20px;
    color: #FFC107;
    font-size: 14px;
}

.hide1 {
    position: absolute;
    width: 240px;
    border-radius: 5px;
    height: 40px;
    z-index: 99;
}

.hide2 {
    position: absolute;
    width: 240px;
    border-radius: 5px;
    height: 40px;
    z-index: 99;
}

.behind {
    width: 240px;
    height: 40px;
    z-index: 98;
}

.login-box {
    position: relative;
}

.hide1:hover, .hide2:hover {
    background: rgba(255, 255, 255, 0.2);
}

.oauth2 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
}

.message {
    color: #FFC107;
    line-height: 24px;
    margin-top: 0;
}

@media (max-width: 768px) {
    .oauth2 {
        display: block;
    }
    .login-box {
        margin-top: 10px;
    }

}