/* Full-page container */
#loginContainer {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column; /* stacks title + form */
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

/* Title */
#loginContainer > p {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/* Form box */
#login-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

    display: flex;
    flex-direction: column;
}

/* Input fields */
#login-form input {
    height: 45px;
    padding: 0 12px;
    border: 1px solid rgba(24, 150, 253, 0.3);
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.2s ease-in-out;
}

#login-form input:focus {
    border-color: rgb(24, 150, 253);
    outline: none;
}

/* Login button */
#login-form button {
    margin: 10px;
    height: 45px;
    width: 200px;
    border: none;
    border-radius: 8px;
    background-color: rgb(24, 150, 253);
    color: white;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

#login-form button:hover {
    background-color: rgb(14, 120, 210);
}

#login-form button:disabled {
    background-color: gray;
    cursor: not-allowed;
}
