/* Center the login container vertically */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Ensures the container grows to take available space */
    padding: 20px;
}

/* Glassmorphism effect for the form box */
.form-box {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Glass effect */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

/* Styling for form fields */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

/* Submit button style */
input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #e10600;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #FF5733;
}


