/* Custom Login Form Styling */
.custom-login-form-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

#custom-login-form input[type="text"],
#custom-login-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

#custom-login-form input[type="text"]:focus,
#custom-login-form input[type="password"]:focus {
    border-color: #4e9ef7;
    box-shadow: 0 0 0 2px rgba(78, 158, 247, 0.2);
    outline: none;
}

#custom-login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

#custom-login-form input[type="submit"] {
    background-color: #4e9ef7;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

#custom-login-form input[type="submit"]:hover {
    background-color: #3a7fc8;
}

#custom-login-form .login-remember {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#custom-login-form .login-remember input[type="checkbox"] {
    margin-right: 8px;
}

#custom-login-form .login-remember label {
    margin-bottom: 0;
    font-size: 14px;
}

.login-error {
    background-color: #ffebee;
    color: #d32f2f;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid #d32f2f;
}

.login-lost-password {
    margin-top: 15px;
    text-align: center;
}

.login-lost-password a {
    color: #4e9ef7;
    text-decoration: none;
    font-size: 14px;
}

.login-lost-password a:hover {
    text-decoration: underline;
}