/* 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 */
}

/* ---------------- */

* {
    box-sizing: border-box;
}



.login-container {
    margin: 0 auto;
    align-items: space-around;
    color: var(--light_bird_color);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #fff;
    border-radius: 25px 7px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
}

h3 {
    text-align: center;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: var(--light_bird_color);
}

a {
    color: var(--light_bird_color);
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    font-size: 14px;
    outline: none;
    text-align: center;  /* Correct property to center the text */

}

input[type="text"]:focus,
input[type="password"]:focus {
    border: 2px solid var(--light_bird_color);  /* Change border to green when focused */
 }

button {
    width: 100%;
    padding: 10px;
    background-color: var(--light_bird_color);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    border-radius: 25px 7px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 40px;
}

button:hover {
    background-color: #0056b3;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
    background-color: var(--light_bird_color);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    border-radius: 25px 7px;
    font-size: 16px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.signup-link {
    text-align: center;
    margin-top: 10px;
}

.signup-link a {
    color: #007bff;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}


@media (max-width: 860px) {
    .login-container {
        width: 90%;
        margin: 5%;
    }
}

/* Styles for mobile devices */
@media screen and (orientation: landscape) {
    html, body {
        height: 100vh;
        max-height: 100vh;
        margin: 0;
        padding: 0;
        background-color: var(--bg-color1);
        margin: 0 auto;
    }
   
    .login-container {
        padding: 0 20px;
        margin: 0 auto;
        height: 100%;
        max-height: calc(100%);
        width: calc(50vw);
        box-shadow: none;
    }
    

}
