/* Authentication Form Styles */

.rvl-auth-container {
    max-width: 420px;
    margin: 2em auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.rvl-auth-tabs {
    display: flex;
}

.rvl-tab-link {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    background: #f8f9fa;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1em;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.2s ease-in-out;
}

.rvl-tab-link.active,
.rvl-tab-link:hover {
    color: #fff;
    background-color: #343a40;
    border-bottom-color: #007bff;
}

.rvl-tab-content {
    display: none;
    padding: 25px;
}

.rvl-tab-content.active {
    display: block;
}

.rvl-tab-content h3 {
    margin-top: 0;
    text-align: center;
}

.rvl-tab-content p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 20px;
}

.rvl-form-row {
    margin-bottom: 15px;
}

.rvl-form-row label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.rvl-form-row input.input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.rvl-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.rvl-rememberme {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rvl-form-submit input.button {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
}

/* Auth Error Messages */
.rvl-error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}