/* Force the login page to use full viewport height and remove spacing */
/*html, body {*/
/*    height: 100vh;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/
/**/
/*/* Make login wrapper take full height and position relative */*/
/*#login {*/
/*    height: 100%;*/
/*    position: relative;*/
/*}*/
/**/
/*/* Position logo absolutely at the bottom */*/
/*#login img {*/
/*    width: 8em;       /* adjust size as needed */*/
/*    height: auto;*/
/*    position: absolute;*/
/*    bottom: 210px;     /* distance from bottom of screen */*/
/*    left: 50%;        /* center horizontally */*/
/*    transform: translateX(-50%);*/
/*}*/

/* Page background */
html, body {
    height: 100%;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

#login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

/* Login card */
#login form {
    background: #000000;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    text-align: center;
}

/* Logo */
#login img {
    width: 8rem;
    margin-bottom: 0;
}

/* Title */
/*#login h1 {*/
/*    margin-bottom: 1.5rem;*/
/*    margin-top: 0;*/
/*    font-size: 2.5rem;*/
/*    font-weight: 700;*/
/*    color: #ffffff;*/
/*    font-style: italic;*/
/*    text-transform: uppercase;*/
/*}*/
/**/
#login h1 {
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "Cursive", "Georgia", Times, serif; /* Fallback system cursive fonts */
    color: #ffffff;
    text-align: center;
    letter-spacing: 2px; /* Slightly spaced for elegance */
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.25); /* Optional shadow for depth */
}
/* Inputs */
#login input.input {
    margin-bottom: 1rem;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
}

/* Button */
#login input.button {
    margin-top: 0.5rem;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 6px;
    background: #2563eb;
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
}

#login input.button:hover {
    background: #1d4ed8;
}
