/* Styles specific to the Login Page */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: transparent; /* show the starfield */
    color: #000000;
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.login-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.89);
    padding: 36px 30px 28px 30px;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.40);
    width: 100%;
    max-width: 380px;
    border: 1.3px solid #232323;
}

h1 {
    /* Change header to black color */
    color: #000000;
    font-size: 2.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.7rem;
    font-family: inherit;
    font-weight: bold;
}

form {
    margin-top: 10px;
}

input {
    margin: 13px 0;
    padding: 13px;
    width: 100%;
    border: 1.3px solid #2e3742;
    border-radius: 6px;
    box-sizing: border-box;
    background: #fff;           /* Make input boxes white */
    color: #181a20;             /* Dark text for contrast */
    font-size: 1rem;
    transition: border-color 0.19s, background 0.19s, color 0.19s;
    font-family: inherit;
}

input:focus {
    outline: none;
    border-color: #000000;
    background: #f5f5f5;        /* Subtle highlight on focus */
    color: #181a20;
}

button {
    margin-top: 19px;
    padding: 14px 0;
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 1.14rem;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background 0.17s, color 0.17s;
    box-shadow: 0 2px 8px rgba(44,255,180,0.13);
}
button:hover {
    background: #ffffff;
    color: #000000;
}

a {
    display: block;
    margin-top: 18px;
    color: #000000;
    text-decoration: none;
    font-size: 1.03rem;
    font-family: inherit;
    transition: color 0.17s;
}

a:hover {
    color: #ff0000;
    text-decoration: underline;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background: transparent;
    color: #000000;
    font-size: 14px;
    z-index: 101;
}
