/* SELECTED PAGE MEMBERS */
.header-middle li:nth-child(5) a::after {
    width: 110%; /* selected page highlighted underline */
}

.header-middle li:nth-child(5) a {
    color: #6164b8; /* selected page highlighted color */
}



.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light_bird_color);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px 7px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 25px 20px; /* reduced padding */
    width: 320px; /* slightly smaller */
    max-width: 100vw;
    transition: all 0.3s ease;
    margin: auto;
}

.login-container:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.input-group {
    width: 100%;
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--light_bird_color);
}

.login-container a {
	color: var(--light_bird_color);
}

input[type="text"],
input[type="email"],
input[type="password"] {
    xwidth: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    text-align: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    background-color: rgba(255,255,255,0.05);
    color: #fff;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border: 2px solid var(--light_bird_color);
    background-color: rgba(255,255,255,0.1);
}

button,
input[type="submit"] {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: var(--light_bird_color);
    color: #fff;
    border: none;
    border-radius: 25px 7px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
 
}

button:hover,
input[type="submit"]:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.signup-link {
    text-align: center;
    margin-top: 15px;
}

.signup-link a {
    color: #007bff;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .login-container {
        width: 90%;
        padding: 30px 20px;
    }
}

@media (max-height: 600px) {
    body, html {
        align-items: flex-start;
        padding-top: 20px;
    }
}

