/* Authentication Styles */
.password-requirements {
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}

.password-requirements ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
}

.password-requirements li {
    margin: 5px 0;
    position: relative;
}

.password-requirements li:before {
    content: "•";
    position: absolute;
    left: -15px;
    color: #0066cc;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.login-form .submit-btn {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s;
}

.login-form .submit-btn:hover {
    background-color: #0052a3;
}

.form-status {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.form-status.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.form-status.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}