/* Center the login box */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-box {
    background-color: rgb(94, 94, 94);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 20px;
}

/* Style the logo */
.logo {
    max-width: 500px;
    margin-bottom: 20px;
}

/* Style the form */
form {
    display: flex;
    flex-direction: column;
}

input[type="password"] {
    padding: 15px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border 0.3s ease;
}

input[type="password"]:focus {
    border-color: #007bff;
}


/* Error message styling */
.error {
    color: #ff4d4d;
    margin-top: 15px;
    font-size: 14px;
}
