/* Auth Page Styles - Couponify Design */
.vs-auth-wrapper {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
}

.vs-auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left Side - Form */
.vs-auth-left {
    background: white;
    padding: 40px 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.vs-auth-header {
    margin-bottom: 60px;
}

.vs-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.vs-logo img
 {
    max-width: 192px;
    height: 42px;
}
.vs-form-group .vs-search-wrapper .vs-search-container input {
    padding: 8px 12px 8px 42px !important;
}
.vs-amount-btn:hover {
  border-color: #085c44;
  background: #f8fffe;
  color: #000;
}
.vs-logo-icon {
    width: 40px;
    height: 40px;
    background: #085C44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.vs-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.vs-form-container {
    display: none;
    max-width: 500px;
    width: 100%;
    align-self: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vs-form-container.active {
    display: block;
    opacity: 1;
}

.vs-form-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.vs-form-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.vs-switch-link {
    color: #085C44;
    text-decoration: underline;
    font-weight: 500;
}

.vs-switch-link:hover {
    color: #1f3d2a;
}

.vs-tab-buttons {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    background: #f3f4f6;
    border-radius: 40px;
    padding: 8px;
}

.vs-tab-btn {
    flex: 1;
    padding: 7px 24px !important;
    border: none !important;
    border-radius: 30px !important;
    background: transparent !important;
    color: #6b7280 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease;
    min-width: 100px;
    outline: none !important;
    box-shadow: none !important;
}

.vs-tab-btn:hover {
    background: rgba(8, 92, 68, 0.1) !important;
    color: #085C44 !important;
}

.vs-tab-btn.active {
    background: #085C44 !important;
    color: white !important;
}

.vs-tab-btn.active:hover {
    background: #1f3d2a !important;
    color: white !important;
}

.vs-auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vs-form-group {
    display: flex;
    flex-direction: column;
    gap: 0px !important;
    margin-bottom: 0px !important;
}

.vs-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #085C44;
}

.vs-auth-container .vs-form-group input {
    padding: 8px 16px !important;
    border: 1px solid #E6EFEC !important;
    border-radius: 12px !important;
    font-size: 16px;
    background: #E6EFEC !important;
    transition: all 0.2s ease;
    height: auto !important;
}

.vs-auth-container .vs-form-group input:focus {
    outline: none;
    border-color: #085C44;
    background: white;
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.vs-auth-container .vs-form-group input::placeholder {
    color: #042E2266 !important;
}

.vs-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -8px 0 0px 0;
}

.vs-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
}

.vs-checkbox input[type="checkbox"] {
    display: none;
}

.vs-checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.vs-checkbox input[type="checkbox"]:checked + .vs-checkmark {
    background: #085C44;
    border-color: #085C44;
}

.vs-checkbox input[type="checkbox"]:checked + .vs-checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.vs-forgot-link {
    color: #085C44;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.vs-forgot-link:hover {
    text-decoration: underline;
}

.vs-submit-btn {
    background: #085C44;
    color: white !important;
    border: none;
    padding: 16px !important;
    border-radius: 16px !important;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vs-submit-btn:hover {
    background: #1f3d2a;
}

.vs-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.vs-divider {
    text-align: center;
    position: relative;
    margin: 8px 0;
}

.vs-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.vs-divider span {
    background: white;
    padding: 0 16px;
    color: #6b7280;
    font-size: 14px;
}

.vs-social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vs-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px !important;
    padding: 12px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 80px !important;
    background: white !important;
    color: #374151 !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.vs-social-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.vs-terms {
    margin-top: 0px;
}

.vs-terms p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.vs-terms a {
    color: #085C44;
    text-decoration: none;
}

.vs-terms a:hover {
    text-decoration: underline;
}

/* Right Side - Info */
.vs-auth-right {
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease;
}

.vs-auth-right[data-active="login"] {
  background: url('https://vibevouch.com/wp-content/uploads/2025/11/Right-Container.png') center/cover, linear-gradient(135deg, #085C44 0%, #1f3d2a 100%);
    padding: 40px;
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
}

.vs-auth-right[data-active="login"] .vs-illustration-containers {
  background: url('https://vibevouch.com/wp-content/uploads/2025/11/Group-48159.svg') center/contain;
    background-repeat: no-repeat;
}

.vs-auth-right[data-active="register"] {
    background: url('https://vibevouch.com/wp-content/uploads/2025/11/Right-Container-1.png') center/cover, linear-gradient(135deg, #d4e157 0%, #c0ca33 100%);
    padding: 40px;
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
}
.vs-auth-right[data-active="register"] .vs-illustration-containers {
    background: url('https://vibevouch.com/wp-content/uploads/2025/11/Group-48160.svg') center/contain;
    background-repeat: no-repeat;
}

.vs-auth-right[data-active="register"] .vs-bottom-text h2, .vs-auth-right[data-active="register"] .vs-bottom-text p {
    color: #085C44 !important;
}

.vs-auth-right[data-active="login"] .vs-back-link, .vs-auth-right[data-active="login"] .vs-bottom-text p {
    color: #fff !important;
}


.vs-back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 60px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.vs-back-link:hover {
    opacity: 1;
}

/* .vs-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} */

.vs-info-section {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    /* height: 100%; */
}

.vs-info-section.active {
    display: flex;
}

.vs-info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
}

.vs-info-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.vs-info-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.vs-voucher-preview {
    text-align: center;
}

.vs-voucher-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.vs-bottom-section {
    text-align: center;
    padding-bottom: 100px;
}

.vs-bottom-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
    color: white !important;
}

.vs-bottom-section p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
    color: white !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vs-auth-container {
        grid-template-columns: 1fr 1fr !important;
    }
    
    /* .vs-auth-right {
        min-height: 300px;
    } */
    
    .vs-auth-left {
        padding: 32px 24px;
    }
    
    .vs-info-card {
        padding: 24px;
    }
    
    .vs-info-card h2 {
        font-size: 24px;
    }
    
    .vs-bottom-section h3 {
        font-size: 24px;
    }
}

@media (max-width: 757px) {
    .vs-auth-container {
        grid-template-columns: 1fr !important;
    }
    .vs-auth-right {
        order: -1;
    }
    .vs-illustration-containers {
        display: none;
    }
}

@media (max-width: 640px) {
    .vs-auth-left {
        padding: 24px 20px;
    }
    
    .vs-auth-right {
        padding: 40px 20px !important;
        justify-content: space-between;
    }
    
    .vs-form-header h1 {
        font-size: 28px;
    }
    
    .vs-social-buttons {
        grid-template-columns: 1fr;
    }
    
    .vs-info-card {
        padding: 20px;
    }
    
    .vs-info-card h2 {
        font-size: 20px;
    }
    
    .vs-bottom-section h3, .vs-bottom-text h2 {
        font-size: 24px !important;
        margin-bottom: 5px !important;
    }
}

/* Notifications */
.vs-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
}

.vs-notification-success {
    background: #10b981;
    color: white;
}

.vs-notification-error {
    background: #ef4444;
    color: white;
}

.vs-notification-info {
    background: #3b82f6;
    color: white;
}

.vs-notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.vs-notification-message {
    font-size: 14px;
    font-weight: 500;
}

.vs-notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    opacity: 0.8;
}

.vs-notification-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Form validation styles */
.vs-form-group input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
}

.vs-form-group.focused label {
    color: #085C44;
}

.vs-recaptcha-container {
    display: flex;
    justify-content: left;
    margin: 8px 0;
}
 .vs-custom-select {
    position: relative;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
}

.vs-select-selected {
	padding: 16px 40px 16px 12px;
	min-height: 20px;
}

.vs-custom-select:focus, .vs-custom-amount input:focus, .vs-form-group input:focus {
	outline: none !important;
    border: 1px solid #085C44 !important;
    border-radius: 8px !important;
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}
.vs-currency-flag {
width: 20px !important;
height: 16px !important;
margin-right: 10px;
display: inline-block;
border-radius: 3px !important;
object-fit: cover !important;
border: 1px solid #e2e8f0;
vertical-align: middle;
}
.vs-select-selected img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 8px;
}

.vs-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 280px;
    overflow-y: auto;
    z-index: 1000;
}

.vs-select-option {
    padding: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.vs-select-option:hover {
    background-color: #f8fafc;
}

.vs-option-logo {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 8px;
}

.vs-search-wrapper {
    padding: 8px;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.vs-search-container {
    position: relative;
}

.vs-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.vs-search-input {
    width: 100% !important;
    padding: 8px 12px 8px 42px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    outline: none !important;
}
input.vs-search-input {
    padding-left: 35px;
}
.vs-search-input:focus {
    border-color: #3b82f6;
}