/* CSS for Authentication Forms (Login, Register) */
.haravy-auth-form {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.haravy-auth-form h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
}

.haravy-auth-form p {
    margin-bottom: 1rem;
}

.haravy-auth-form label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
    color: #555;
}

.haravy-auth-form input[type="text"],
.haravy-auth-form input[type="email"],
.haravy-auth-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Important */
}

.haravy-auth-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.haravy-auth-form input[type="submit"]:hover {
    background-color: #2980b9;
}

.haravy-form-errors {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.haravy-form-errors p {
    margin: 0;
}

.haravy-auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9em;
    color: #555;
}
.haravy-auth-switch a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}
.haravy-auth-switch a:hover {
    text-decoration: underline;
}
