.user-auth-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.user-auth-form h3 {
    margin-top: 0;
    text-align: center;
    color: #333;
}

.user-auth-form .form-group {
    margin-bottom: 15px;
}

.user-auth-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.user-auth-form .form-group input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.user-auth-form .form-actions {
    text-align: center;
    margin-top: 20px;
}

.user-auth-form .form-actions button {
    background: #42a55b;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
}

.user-auth-form .form-actions button:hover {
    background: #016F36;
}

.user-auth-form .forgot-password {
    display: block;
    margin-top: 10px;
    color: #42a55b;
    text-decoration: none;
}

.user-auth-form .forgot-password:hover {
    text-decoration: underline;
}

.user-auth-form .auth-error {
    background: #ffeaa7;
    color: #d63031;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 15px;
    border-left: 4px solid #d63031;
}

.user-auth-form .auth-success {
    background: #55efc4;
    color: #00b894;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 15px;
    border-left: 4px solid #00b894;
}