/**
 * WPRentals Premium Authentication Pages
 * Modern, minimal design with premium aesthetics
 *
 * Version: 1.0
 * License: GPL-2.0+
 */

/* ============================================================================
   Color Scheme & Variables
   ============================================================================ */

:root {
    --primary-color: #3e7a89 !important;
    --secondary-color: #ddca9b !important;
    --accent-color: #3e7a89 !important;
    --success-color: #27AE60 !important;
    --error-color: #E74C3C !important;
    --warning-color: #F39C12 !important;
    --light-bg: #ffffff !important;
    --white: #FFFFFF !important;
    --text-dark: #2c3e50 !important;
    --text-light: #666666 !important;
    --border-color: #e0e0e0 !important;
    --shadow-sm: 0 2px 8px rgba(62, 122, 137, 0.08) !important;
    --shadow-md: 0 4px 16px rgba(62, 122, 137, 0.12) !important;
    --shadow-lg: 0 12px 32px rgba(62, 122, 137, 0.15) !important;
    --radius: 8px !important;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ============================================================================
   Global Styles
   ============================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    background: var(--light-bg) !important;
    color: var(--text-dark) !important;
}

body {
    font-size: 16px !important;
    line-height: 1.6 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

a {
    color: var(--accent-color) !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
}

a:hover {
    color: var(--primary-color) !important;
}

/* ============================================================================
   Authentication Container
   ============================================================================ */

/*.wprentals-auth-container {*/
/*    display: flex !important;*/
/*    min-height: 100vh !important;*/
/*    background: var(--light-bg) !important;*/
/*    align-items: stretch !important;*/
/*}*/

.wprentals-auth-wrapper {
    display: block !important;
    width: 100% !important;
    background: var(--white) !important;
}

/* ============================================================================
   Sidebar - Branding & Benefits
   ============================================================================ */

/*.wprentals-auth-sidebar {*/
/*    flex: 1 !important;*/
/*    display: flex !important;*/
/*    flex-direction: column !important;*/
/*    justify-content: center !important;*/
/*    align-items: center !important;*/
/*    padding: 60px 40px !important;*/
/*    background: linear-gradient(135deg, #3e7a89 0%, #2d5f69 100%) !important;*/
/*    color: white !important;*/
/*    position: relative !important;*/
/*    overflow: hidden !important;*/
/*    */
/*    */
/*}*/


.wprentals-auth-sidebar {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 60px 40px !important;
    background: linear-gradient(135deg, #f2ebda91 0%, #2d5f69 100%) !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
}


.wprentals-auth-sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.wprentals-auth-sidebar-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 400px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.wprentals-auth-logo {
    margin-bottom: 40px;
}

.wprentals-auth-logo h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

.wprentals-auth-logo img {
    max-width: 150%;
    height: auto;
    display: block;
}

.wprentals-auth-benefits h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.wprentals-auth-benefits p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.wprentals-benefits-list {
    list-style: none;
    text-align: left;
}

.wprentals-benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    opacity: 0.95;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text {
    line-height: 1.5;
}

/* ============================================================================
   Form Container
   ============================================================================ */

.wprentals-auth-form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    min-width: 0;
}

.wprentals-auth-form-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.wprentals-auth-form-header {
    margin-bottom: 40px;
}

.wprentals-auth-form-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.auth-subtext {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================================
   Form Elements
   ============================================================================ */

.wprentals-auth-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
}

.wprentals-form-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.wprentals-form-group label {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--text-dark) !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.wprentals-form-group label .required {
    color: var(--error-color);
}

.wprentals-form-input {
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
    font-family: inherit;
}

.wprentals-form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(62, 122, 137, 0.1);
}

.wprentals-form-input::placeholder {
    color: #BDC3C7;
}

/* Differentiated Input Styles */

/* Text Input - Default Style */
input[type="text"].wprentals-form-input {
    border: 2px solid #f0f0f0;
    background: #fafbfc;
}

input[type="text"].wprentals-form-input:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(62, 122, 137, 0.08);
}

/* Email Input - Distinct Style */
input[type="email"].wprentals-form-input {
    border: 2px solid #f0f0f0;
    background: linear-gradient(to right, #fafbfc, #ffffff);
}

input[type="email"].wprentals-form-input:focus {
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(221, 202, 155, 0.12);
}

/* Password Input - Special Style */
input[type="password"].wprentals-form-input {
    border: 2px solid #f0f0f0;
    background: linear-gradient(to right, #ffffff, #fafbfc);
    letter-spacing: 0.15em;
}

input[type="password"].wprentals-form-input:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(62, 122, 137, 0.1);
}

/* Phone/Tel Input */
input[type="tel"].wprentals-form-input {
    border: 2px solid #f0f0f0;
    background: #fafbfc;
}

input[type="tel"].wprentals-form-input:focus {
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(221, 202, 155, 0.08);
}

/* Select Input */
select.wprentals-form-input {
    border: 2px solid #f0f0f0;
    background: #fafbfc url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233e7a89' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 12px center;
    padding-right: 36px;
    background-size: 18px;
}

select.wprentals-form-input:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(62, 122, 137, 0.1);
}

/* Textarea */
textarea.wprentals-form-input {
    border: 2px solid #f0f0f0;
    background: #fafbfc;
    resize: vertical;
    min-height: 100px;
    padding: 14px 14px;
}

textarea.wprentals-form-input:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(62, 122, 137, 0.1);
}

/* ============================================================================
   Password Input
   ============================================================================ */

.wprentals-password-input-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

input[type="password"],
.wprentals-password-input {
    width: 100% !important;
}

.wprentals-password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.wprentals-password-toggle:hover {
    color: var(--accent-color);
}

.wprentals-password-toggle i {
    font-size: 16px;
}

/* ============================================================================
   Checkbox & Radio
   ============================================================================ */

.wprentals-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    padding: 12px 0;
}

.wprentals-checkbox input {
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.wprentals-radio-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wprentals-radio-option {
    display: flex;
    align-items: flex-start;
    padding: 18px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    gap: 12px;
    background: #fafbfc;
}

.wprentals-radio-option input[type="radio"] {
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.wprentals-radio-option:hover {
    border-color: var(--primary-color);
    background: rgba(62, 122, 137, 0.03);
}

.wprentals-radio-option input[type="radio"]:checked ~ .radio-label {
    font-weight: 500;
}

.radio-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.radio-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.radio-desc {
    font-size: 12px;
    color: var(--text-light);
}

.form-help {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ============================================================================
   Form Actions & Links
   ============================================================================ */

.wprentals-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    /*margin-top: 16px;*/
    padding-top: 16px;
}

.wprentals-link-forgot {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.wprentals-link-forgot:hover {
    color: var(--secondary-color);
}

.wprentals-link-primary {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.wprentals-link-primary:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ============================================================================
   Buttons
   ============================================================================ */

.wprentals-btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
}

.wprentals-btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.wprentals-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wprentals-btn-primary {
    background: linear-gradient(135deg, #3e7a89 0%, #2d5f69 100%);
    color: white;
    box-shadow: var(--shadow-sm);
}

.wprentals-btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #2d5f69 0%, #1e4452 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.wprentals-btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.wprentals-btn-lg {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    /*margin-top: 16px;*/
}

.btn-loader {
    font-size: 16px;
}

/* ============================================================================
   Alerts
   ============================================================================ */

.wprentals-auth-alert {
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    animation: slideDown 0.3s ease-out;
    border-left: 4px solid transparent;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wprentals-alert-success {
    background: rgba(39, 174, 96, 0.08);
    color: var(--success-color);
    border-left-color: var(--success-color);
}

.wprentals-alert-error {
    background: rgba(231, 76, 60, 0.08);
    color: var(--error-color);
    border-left-color: var(--error-color);
}

.wprentals-alert-warning {
    background: rgba(243, 156, 18, 0.08);
    color: var(--warning-color);
    border-left-color: var(--warning-color);
}

.wprentals-auth-alert i {
    font-size: 16px;
    flex-shrink: 0;
}

/* ============================================================================
   Divider
   ============================================================================ */

.wprentals-divider {
    position: relative;
    text-align: center;
    margin: 32px 0;
    font-size: 13px;
    color: var(--text-light);
}

.wprentals-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--border-color);
    z-index: 0;
}

.wprentals-divider span {
    position: relative;
    background: var(--white);
    padding: 0 12px;
    z-index: 1;
}

/* ============================================================================
   Social Login
   ============================================================================ */

.wprentals-social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wprentals-social-login a {
    padding: 12px 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    color: var(--text-dark);
    background: #fafbfc;
}

.wprentals-social-login a:hover {
    border-color: var(--primary-color);
    background: rgba(62, 122, 137, 0.05);
}

.wprentals-social-login a i {
    font-size: 16px;
}

/* ============================================================================
   Footer
   ============================================================================ */

.wprentals-auth-footer {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-light);
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.wprentals-auth-footer p {
    margin: 0;
}

/* ============================================================================
   Captcha
   ============================================================================ */

.wprentals-captcha-group {
    display: flex;
    justify-content: center;
    margin: 12px 0;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
}

/* ============================================================================
   Responsive - Tablet (768px - 1024px)
   ============================================================================ */

@media (max-width: 1024px) {
    .wprentals-auth-sidebar {
        padding: 50px 30px;
    }

    .wprentals-auth-form-container {
        padding: 40px 30px;
    }

    .wprentals-auth-form-wrapper {
        max-width: 400px;
    }
}

/* ============================================================================
   Responsive - Mobile (max-width: 768px)
   ============================================================================ */

@media (max-width: 768px) {
    .wprentals-auth-container {
        flex-direction: column;
        min-height: auto;
    }


    .wprentals-auth-sidebar {
        order: 1;
        padding: 40px 24px;
        min-height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
        display: none !important;
    }

    .wprentals-auth-sidebar-content {
        max-width: 100%;
    }

    .wprentals-auth-form-container {
        order: 1;
        padding: 30px 20px;
        min-height: auto;
    }

    .wprentals-auth-form-wrapper {
        max-width: 100%;
    }

    .wprentals-auth-form-header h1 {
        font-size: 24px;
    }

    .auth-subtext {
        font-size: 13px;
    }

    .wprentals-form-input {
        padding: 11px 12px;
        font-size: 16px;
    }

    .wprentals-btn-lg {
        padding: 12px 20px;
        font-size: 14px;
    }

    .wprentals-auth-benefits h3 {
        font-size: 20px;
    }

    .wprentals-benefits-list li {
        margin-bottom: 12px;
    }

    /* Stack form groups better on mobile */
    .wprentals-form-group {
        gap: 8px;
    }

    /* Adjust radio options for mobile */
    .wprentals-radio-option {
        padding: 14px 12px;
    }

    /* Maintain spacing on mobile */
    .wprentals-auth-form {
        gap: 22px;
    }

    .wprentals-form-actions {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        margin-top: 12px;
        padding-top: 12px;
    }
}

/* ============================================================================
   Responsive - Small Mobile (max-width: 480px)
   ============================================================================ */

@media (max-width: 480px) {
    .wprentals-auth-sidebar {
        padding: 30px 16px;
    }

    .wprentals-auth-form-container {
        padding: 24px 16px;
    }

    .wprentals-auth-form-header h1 {
        font-size: 22px;
    }

    .wprentals-auth-benefits h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .wprentals-auth-benefits p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .wprentals-benefits-list li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .benefit-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        font-size: 11px;
    }

    .wprentals-form-group label {
        font-size: 13px;
    }

    .wprentals-form-input {
        padding: 10px 11px;
        font-size: 16px;
    }

    .form-help {
        font-size: 11px;
    }

    .wprentals-auth-footer {
        font-size: 13px;
    }
}

/* ============================================================================
   Accessibility & Print
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .wprentals-auth-container {
        display: none;
    }
}

/* ============================================================================
   Animations & Keyframes
   ============================================================================ */

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes blobFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes blobFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    66% {
        transform: translate(20px, -20px) scale(1.1);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes blobFloat3 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, 20px) scale(1.05);
    }
    66% {
        transform: translate(-30px, -30px) scale(0.95);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes chartLine {
    from {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dasharray: 1000;
        stroke-dashoffset: 0;
    }
}

/* Animation Classes */
.slide-in-top {
    animation: slideInTop 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

.slide-in-bottom {
    animation: slideInBottom 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

.fade-in-scale {
    animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

.floating {
    animation: floating 3s ease-in-out infinite !important;
}

.pulse {
    animation: pulse 2s ease-in-out infinite !important;
}

/* Sidebar Blob Animations */
.sidebar-blob {
    position: absolute !important;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50% !important;
    opacity: 0.08 !important;
    z-index: 0 !important;
}

.sidebar-blob-1 {
    width: 300px !important;
    height: 300px !important;
    background: #ffffff !important;
    top: -50px !important;
    right: -100px !important;
    animation: blobFloat1 8s ease-in-out infinite !important;
}

.sidebar-blob-2 {
    width: 200px !important;
    height: 200px !important;
    background: #ffffff !important;
    bottom: 50px !important;
    left: -80px !important;
    animation: blobFloat2 7s ease-in-out infinite !important;
}

.sidebar-blob-3 {
    width: 250px !important;
    height: 250px !important;
    background: #ffffff !important;
    top: 50% !important;
    right: 10% !important;
    animation: blobFloat3 9s ease-in-out infinite !important;
}

/* Illustration Container */
.wprentals-illustrations-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 40px !important;
    margin: 30px 0 !important;
    z-index: 1 !important;
    position: relative !important;
}

.illustration {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
}

.illustration svg {
    width: 100px !important;
    height: 100px !important;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12)) !important;
}

.hotel-illustration svg {
    animation: floating 3.2s ease-in-out infinite !important;
}

.booking-illustration svg {
    animation: floating 3.5s ease-in-out infinite !important;
}

.illustration-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

/* Logo Icon Animation */
.logo-icon {
    width: 50px !important;
    height: 50px !important;
    margin-bottom: 12px !important;
}

.chart-line {
    animation: chartLine 2s ease-out !important;
}

.logo-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    z-index: 1 !important;
}

.logo-wrapper h2 {
    margin: 0 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
}

/* Benefit Items Animation */
.benefit-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    animation: slideInBottom 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
    opacity: 0 !important;
}

.benefit-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    color: #ffffff !important;
}

.benefit-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* ============================================================================
   High Contrast Mode
   ============================================================================ */

@media (prefers-contrast: more) {
    .wprentals-form-input,
    .wprentals-btn {
        border-width: 2px;
    }

    .wprentals-auth-alert {
        border-width: 2px;
    }
}

/* ============================================================================
   Dark Mode Support (Optional)
   ============================================================================ */

/*@media (prefers-color-scheme: dark) {*/
/*    :root {*/
/*        --light-bg: #1A1A1A;*/
/*        --white: #242424;*/
/*        --text-dark: #F0F0F0;*/
/*        --text-light: #B0B0B0;*/
/*        --border-color: #3A3A3A;*/
/*    }*/

/*    .wprentals-form-input {*/
/*        background: #1F1F1F;*/
/*        border-color: var(--border-color);*/
/*    }*/

/*    .wprentals-form-input:focus {*/
/*        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);*/
/*    }*/

/*    .wprentals-radio-option {*/
/*        background: #1F1F1F;*/
/*    }*/

/*    .wprentals-radio-option:hover {*/
/*        background: rgba(52, 152, 219, 0.08);*/
/*    }*/

/*    .wprentals-social-login a {*/
/*        background: #1F1F1F;*/
/*    }*/

/*    .wprentals-social-login a:hover {*/
/*        background: rgba(52, 152, 219, 0.08);*/
/*    }*/
/*}*/



/**
 * WPRentals Premium Authentication Pages - Enhanced
 * Classical, Compact, International Design System
 *
 * Version: 2.0
 * License: GPL-2.0+
 */

/* ============================================================================
   Design Variables & Color System
   ============================================================================ */

:root {
    /* Primary Colors - Classical Palette */
    --primary-dark: #1a3a42 !important;
    --primary-main: #2d5f69 !important;
    --primary-light: #3e7a89 !important;
    --accent-warm: #d4a574 !important;
    --accent-muted: #8b7d6b !important;

    /* Neutrals - Clean & Professional */
    --neutral-white: #ebebeb !important;
    --neutral-50: #f8f9fa !important;
    --neutral-100: #f0f2f5 !important;
    --neutral-200: #e5e7eb !important;
    --neutral-400: #9ca3af !important;
    --neutral-600: #4b5563 !important;
    --neutral-800: #1f2937 !important;

    /* Status Colors */
    --success-color: #10b981 !important;
    --error-color: #ef4444 !important;
    --warning-color: #f59e0b !important;

    /* Shadows - Subtle & Elegant */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
    --shadow-sm: 0 2px 8px rgba(26, 58, 66, 0.06) !important;
    --shadow-md: 0 4px 16px rgba(26, 58, 66, 0.08) !important;
    --shadow-lg: 0 12px 32px rgba(26, 58, 66, 0.12) !important;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;

    /* Border Radius */
    --radius-sm: 4px !important;
    --radius-md: 6px !important;
    --radius-lg: 8px !important;

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', sans-serif !important;
    --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace !important;
}

/* ============================================================================
   Reset & Base Styles
   ============================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-family);
    background-color: var(--neutral-50);
    color: var(--neutral-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-size: 15px;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-main);
}

/* ============================================================================
   Authentication Container - Layout System
   ============================================================================ */

/*.wprentals-auth-container {*/
/*    display: flex !important;*/
/*    width: 100% !important;*/
/*    min-height: 100vh !important;*/
/*    background-color: var(--neutral-50) !important;*/
/*}*/

.wprentals-auth-container.wprentals-enhanced {
    background: linear-gradient(to bottom, var(--neutral-white), var(--neutral-100)) !important;
}

/* ============================================================================
   Sidebar - Premium Branding Section
   ============================================================================ */

.wprentals-auth-sidebar {
    flex: 0 0 50% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 60px 50px !important;
    position: relative !important;
    overflow: hidden !important;
}

.wprentals-sidebar-premium {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%) !important;
    color: var(--neutral-white) !important;
}

.wprentals-sidebar-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 50%),
            radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.wprentals-sidebar-content {
    position: relative !important;
    z-index: 1 !important;
    max-width: 420px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 36px !important;
}

/* Logo */
.wprentals-auth-logo {
    margin-bottom: 0;
}

.wprentals-logo-premium h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
    color: var(--neutral-white);
}

.wprentals-logo-premium img {
    max-width: 180px;
    height: auto;
    display: block;
}

/* Value Proposition */
.wprentals-value-proposition {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wprentals-value-proposition h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: var(--neutral-white);
    margin: 0;
}

.wprentals-value-proposition p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Statistics Grid */
.wprentals-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-warm);
    letter-spacing: -0.3px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Testimonial */
.wprentals-testimonial {
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-quote {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-warm);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-white);
}

.testimonial-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
}

/* Trust Badges */
.wprentals-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.badge-item i {
    font-size: 14px;
    color: var(--accent-warm);
}

/* ============================================================================
   Form Container - Right Side
   ============================================================================ */

.wprentals-auth-form-container {
    flex: 0 0 50% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 40px 50px !important;
    background-color: #ebebeb !important;
}

.wprentals-form-premium {
    padding: 40px 25px !important;
}

.wprentals-auth-form-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    background: #ffffff !important;
    padding: 1em;
    border-radius: 1em;
}

/* Form Header */
.wprentals-form-header-section {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wprentals-form-header-section h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-dark);
    margin: 0;
}

.auth-subtext {
    font-size: 14px;
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.5;
}

/* ============================================================================
   Form Elements - Compact Layout
   ============================================================================ */

.wprentals-auth-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.wprentals-form-compact {
    gap: 18px !important;
}

/* Form Section */
.wprentals-form-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wprentals-section-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-800);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Two Column Row Layout */
.wprentals-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.wprentals-form-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wprentals-form-col label {
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-800);
    display: flex;
    align-items: center;
    gap: 3px;
}

.wprentals-form-col label .required {
    color: var(--error-color);
    font-weight: 700;
}

/* Form Inputs - Clean & Professional */
.wprentals-form-input {
    padding: 11px 14px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    background-color: var(--neutral-white);
    color: var(--neutral-800);
    transition: var(--transition-fast);
}

.wprentals-form-input::placeholder {
    color: var(--neutral-400);
}

.wprentals-form-input:hover {
    border-color: var(--neutral-300);
}

.wprentals-form-input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(62, 122, 137, 0.1);
    background-color: var(--neutral-white);
}

/* Select Input */
select.wprentals-form-input {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233e7a89' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
    appearance: none;
}

/* ============================================================================
   Compact Radio Selection
   ============================================================================ */

.wprentals-radio-compact-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wprentals-radio-compact {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    background-color: var(--neutral-white);
    cursor: pointer;
    transition: var(--transition-fast);
    gap: 10px;
}

.wprentals-radio-compact input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary-light);
    flex-shrink: 0;
    margin: 0;
}

.wprentals-radio-compact-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-800);
    cursor: pointer;
    user-select: none;
}

.wprentals-radio-compact input[type="radio"]:checked ~ .radio-compact-label {
    color: var(--primary-main);
}

.wprentals-radio-compact:hover {
    border-color: var(--primary-light);
    background-color: rgba(62, 122, 137, 0.02);
}

.wprentals-radio-compact input[type="radio"]:checked + .wprentals-radio-compact-group,
.wprentals-radio-compact input[type="radio"]:checked {
    /* Handled above */
}

/* ============================================================================
   Password Input with Toggle
   ============================================================================ */

.wprentals-password-input-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

.wprentals-password-input {
    width: 100% !important;
}

.wprentals-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--neutral-400);
    cursor: pointer;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.wprentals-password-toggle:hover {
    color: var(--primary-light);
}

.wprentals-password-toggle i {
    font-size: 16px;
}

/* ============================================================================
   Checkbox - Modern Style
   ============================================================================ */

.wprentals-form-terms {
    padding: 16px 0;
}

.wprentals-checkbox-modern {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}
.phone-input-wrapper{
    width: 100% !important;
}
.wprentals-checkbox-modern input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    cursor: pointer;
    accent-color: var(--primary-light);
    flex-shrink: 0;
    margin: 2px 0 0 0;
}

.checkbox-label {
    font-size: 13px;
    line-height: 1.6;
    color: var(--neutral-600);
    display: inline;
    flex-direction: column;
    gap: 4px;
}

.checkbox-label a {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--primary-main);
    text-decoration-color: var(--primary-main);
}

.checkbox-label .required {
    color: var(--error-color);
    font-weight: 700;
}

/* ============================================================================
   Captcha Section
   ============================================================================ */

.wprentals-form-captcha {
    display: flex;
    justify-content: center;
    padding: 12px 0;
}

.g-recaptcha {
    transform: scale(0.94);
    transform-origin: 0 0;
}

/* ============================================================================
   Buttons - Modern & Premium
   ============================================================================ */

.wprentals-btn-modern {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
    letter-spacing: -0.2px;
}

.wprentals-btn-modern:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.wprentals-btn-modern:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.wprentals-btn-primary-modern {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-dark) 100%);
    color: var(--neutral-white);
    box-shadow: var(--shadow-md);
}

.wprentals-btn-primary-modern:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2530 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.wprentals-btn-primary-modern:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.wprentals-btn-block {
    width: 100%;
    padding: 13px 24px;
    font-size: 15px;
}

.btn-loader {
    font-size: 16px;
}

/* ============================================================================
   Alerts - Professional
   ============================================================================ */

.wprentals-auth-alert {
    padding: 13px 14px;
    border-radius: var(--radius-md);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease-out;
    border-left: 4px solid transparent;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wprentals-alert-success {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success-color);
    border-left-color: var(--success-color);
}

.wprentals-alert-error {
    background: rgba(239, 68, 68, 0.08);
    color: var(--error-color);
    border-left-color: var(--error-color);
}

.wprentals-alert-warning {
    background: rgba(245, 158, 11, 0.08);
    color: var(--warning-color);
    border-left-color: var(--warning-color);
}

.wprentals-auth-alert i {
    font-size: 16px;
    flex-shrink: 0;
}

/* ============================================================================
   Divider
   ============================================================================ */

.wprentals-divider-modern {
    position: relative;
    text-align: center;
    margin: 24px 0;
    font-size: 13px;
    color: var(--neutral-600);
}

.wprentals-divider-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--neutral-200);
    z-index: 0;
}

.wprentals-divider-modern span {
    position: relative;
    background: var(--neutral-white);
    padding: 0 12px;
    z-index: 1;
    font-weight: 500;
}

/* ============================================================================
   Social Login
   ============================================================================ */

.wprentals-social-login-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wprentals-social-login-modern a {
    padding: 11px 14px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
    color: var(--neutral-800);
    background-color: var(--neutral-white);
}

.wprentals-social-login-modern a:hover {
    border-color: var(--primary-light);
    background-color: rgba(62, 122, 137, 0.04);
    color: var(--primary-light);
}

.wprentals-social-login-modern a i {
    font-size: 16px;
}

/* ============================================================================
   Footer
   ============================================================================ */

.wprentals-auth-footer-modern {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--neutral-600);
    padding-top: 20px;
    border-top: 1px solid var(--neutral-200);
}

.wprentals-auth-footer-modern p {
    margin: 0;
}

.wprentals-link-modern {
    color: var(--primary-light);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.wprentals-link-modern:hover {
    color: var(--primary-main);
    text-decoration: underline;
}

/* ============================================================================
   Responsive Design - Tablet (1024px and below)
   ============================================================================ */

@media (max-width: 1024px) {
    .wprentals-auth-sidebar {
        padding: 50px 40px;
    }

    .wprentals-auth-form-container {
        padding: 40px 40px;
    }

    .wprentals-auth-form-wrapper {
        max-width: 100%;
    }

    .wprentals-sidebar-content {
        max-width: 100%;
    }

    .wprentals-value-proposition h2 {
        font-size: 22px;
    }

    .wprentals-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================================
   Responsive Design - Small Tablet (768px and below)
   ============================================================================ */

@media (max-width: 768px) {
    .wprentals-auth-container {
        flex-direction: column;
        min-height: auto;
    }

    .wprentals-auth-sidebar {
        flex: 0 0 auto !important;
        order: 1;
        padding: 40px 24px;
        min-height: auto;

        display: none !important;
    }

    .wprentals-auth-form-container {
        flex: 0 0 auto !important;
        order: 0;
        padding: 30px 24px;
        min-height: auto;
    }

    .wprentals-sidebar-content {
        gap: 28px;
    }

    .wprentals-value-proposition h2 {
        font-size: 20px;
    }

    .wprentals-value-proposition p {
        font-size: 13px;
    }

    .wprentals-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 16px;
        gap: 12px;
    }

    .stat-number {
        font-size: 16px;
    }

    .stat-label {
        font-size: 11px;
    }

    .wprentals-testimonial {
        padding: 16px;
    }

    .testimonial-quote {
        font-size: 12px;
    }

    .testimonial-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .testimonial-name {
        font-size: 12px;
    }

    .testimonial-title {
        font-size: 10px;
    }

    .wprentals-form-header-section h1 {
        font-size: 24px;
    }

    .auth-subtext {
        font-size: 13px;
    }

    .wprentals-form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .wprentals-form-input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .wprentals-btn-block {
        padding: 12px 20px;
        font-size: 14px;
    }

    .wprentals-auth-form {
        gap: 16px;
    }

    .wprentals-form-compact {
        gap: 14px;
    }
}

/* ============================================================================
   Responsive Design - Mobile (480px and below)
   ============================================================================ */

@media (max-width: 480px) {
    .wprentals-auth-sidebar {
        padding: 30px 16px;
    }

    .wprentals-auth-form-container {
        padding: 24px 16px;
    }

    .wprentals-auth-form-wrapper {
        max-width: 100%;
    }

    .wprentals-sidebar-content {
        gap: 24px;
    }

    .wprentals-logo-premium h3 {
        font-size: 20px;
    }

    .wprentals-value-proposition h2 {
        font-size: 18px;
    }

    .wprentals-value-proposition p {
        font-size: 12px;
    }

    .wprentals-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 14px;
        gap: 10px;
    }

    .stat-number {
        font-size: 14px;
    }

    .stat-label {
        font-size: 10px;
    }

    .wprentals-trust-badges {
        gap: 10px;
    }

    .badge-item {
        font-size: 11px;
    }

    .wprentals-form-header-section h1 {
        font-size: 20px;
    }

    .auth-subtext {
        font-size: 12px;
    }

    .wprentals-form-col label {
        font-size: 12px;
    }

    .wprentals-form-input {
        padding: 9px 11px;
        font-size: 14px;
    }

    .wprentals-radio-compact-group {
        gap: 10px;
    }

    .wprentals-radio-compact {
        padding: 10px 12px;
        font-size: 12px;
    }

    .wprentals-radio-compact-label {
        font-size: 12px;
    }

    .wprentals-btn-modern {
        padding: 11px 20px;
        font-size: 13px;
    }

    .wprentals-auth-footer-modern {
        font-size: 12px;
    }

    .wprentals-checkbox-modern input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .checkbox-label {
        font-size: 12px;
    }

    .wprentals-divider-modern {
        margin: 18px 0;
    }
}

/* ============================================================================
   Accessibility Features
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: more) {
    .wprentals-form-input,
    .wprentals-btn-modern,
    .wprentals-auth-alert {
        border-width: 2px;
    }
}

/* ============================================================================
   Print Styles
   ============================================================================ */

@media print {
    .wprentals-auth-container {
        display: none !important;
    }
}

/* ============================================================================
   High DPI Displays
   ============================================================================ */

@media (min-width: 1440px) {
    .wprentals-auth-sidebar {
        padding: 70px 60px;
    }

    .wprentals-auth-form-container {
        padding: 50px 60px;
    }

    .wprentals-form-header-section h1 {
        font-size: 32px;
    }

    .wprentals-value-proposition h2 {
        font-size: 28px;
    }
}






