/* Registration Section */
.registration-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(149, 29, 93, 0.05), rgba(122, 21, 72, 0.05));
    z-index: 1;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.9;
}

/* Register Button */
.register-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(149, 29, 93, 0.2);
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(149, 29, 93, 0.3);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    display: flex;
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
    overflow-y: auto;
    border: 2px solid rgba(149, 29, 93, 0.15);
}

/* Custom Scrollbar */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(149, 29, 93, 0.5);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(149, 29, 93, 0.7);
}

/* Add subtle inner shadow to modal */
.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 15px rgba(149, 29, 93, 0.05);
    pointer-events: none;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary);
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 0.75rem;
}

.modal-logo {
    margin-bottom: 0.5rem;
}

.modal-logo img {
    max-width: 120px;
    height: auto;
}

.modal-header h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.modal-header p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 0.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(149, 29, 93, 0.1);
}

/* Phone Input Group */
.phone-input {
    display: flex;
    gap: 1rem;
}

.phone-input select {
    width: 150px;
    flex-shrink: 0;
}

.phone-input input {
    flex: 1;
}

/* Error Message Styles */
.error-message {
    background-color: #fff5f5 !important;
    color: #dc3545 !important;
    border: 1px solid #f5c6cb !important;
    padding: 10px !important;
    margin-bottom: 15px !important;
    border-radius: 4px !important;
    font-size: 0.9rem !important;
    display: block !important;
    opacity: 1 !important;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    background: #951d5d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #7a1548;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Loading State */
.button-loading {
    position: relative;
    color: transparent !important;
}

.button-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-loading 0.8s linear infinite;
}

@keyframes button-loading {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .cta-content {
        margin-bottom: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .modal-content {
        padding: 2rem;
        width: 95%;
    }

    .phone-input {
        flex-direction: column;
    }

    .phone-input select {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

/* Form Steps */
.form-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: relative;
}

.form-step[data-step="1"] {
    display: block;
    opacity: 1;
}

/* Step Transitions */
.form-step.transitioning-in {
    animation: stepIn 0.3s ease-in-out forwards;
}

.form-step.transitioning-out {
    animation: stepOut 0.3s ease-in-out forwards;
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes stepOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

/* Step Content */
.step-content {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.form-step:not([data-step="1"]) .step-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-header h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-header p {
    color: var(--text-dark);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Step Progress */
.step-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.step-progress-item {
    display: flex;
    align-items: center;
}

.step-progress-item:not(:last-child) {
    margin-right: 1rem;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.step-progress-item.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.step-progress-item.completed .step-number {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.step-label {
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.step-progress-item.active .step-label {
    color: var(--primary);
    opacity: 1;
    font-weight: 600;
}

.step-progress-item.completed .step-label {
    color: #28a745;
    opacity: 1;
}

/* Field Error Messages */
.field-error {
    color: #dc3545 !important;
    font-size: 0.8rem !important;
    margin-top: 5px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Verification Actions */
.verification-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.back-btn {
    flex: 1;
    padding: 1rem;
    background: #f8f9fa;
    color: var(--text-dark);
    border: 1px solid #dee2e6;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #e9ecef;
}

.verification-actions .submit-btn {
    flex: 2;
}

/* Success Message */
.success-message {
    display: none;
    color: #28a745;
    background: #d4edda;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

/* Code Input Styling */
#verificationCode {
    letter-spacing: 0.5em;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

@media (max-width: 576px) {
    .verification-actions {
        flex-direction: column;
    }

    .back-btn,
    .verification-actions .submit-btn {
        width: 100%;
    }
}

/* Success Step Styles */
.success-content {
    text-align: center;
    padding: 1rem;
}

.registration-details {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(149, 29, 93, 0.1);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(149, 29, 93, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.detail-item span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.download-btn,
.directions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 200px;
}

.download-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(149, 29, 93, 0.2);
}

.directions-btn {
    background: #f8f9fa;
    color: var(--text-dark);
    border: 1px solid #dee2e6;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(149, 29, 93, 0.3);
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: white;
    border-color: var(--primary);
    color: var(--primary);
}

.download-btn:active,
.directions-btn:active {
    transform: translateY(0);
}

.download-btn i,
.directions-btn i {
    font-size: 1.1rem;
}

.download-btn.button-loading {
    background: var(--primary);
}

@media (max-width: 576px) {
    .success-actions {
        flex-direction: column;
    }

    .download-btn,
    .directions-btn {
        width: 100%;
        min-width: unset;
    }
}

/* Success content styles for download */
.success-content.capturing {
    background: white !important;
    padding: 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(149, 29, 93, 0.15) !important;
    width: 500px !important;
    margin: 0 auto !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(149, 29, 93, 0.1) !important;
}

.success-content.capturing .download-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
}

.success-content.capturing .download-logo {
    width: 220px !important;
    height: auto !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) !important;
    margin: 0 auto !important;
    display: block !important;
}

.success-content.capturing .header-banner {
    background: var(--primary) !important;
    padding: 1.5rem !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
}

.success-content.capturing .header-banner h2 {
    color: white !important;
    font-size: 1.5rem !important;
    margin: 0 !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Add a subtle glow effect to the logo */
.success-content.capturing .header-logo .main-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)) !important;
    transition: filter 0.3s ease !important;
}

.success-content.capturing .main-content {
    padding: 1.5rem !important;
}

.success-content.capturing .registration-details,
.success-content.capturing .benefits-container,
.success-content.capturing .barcode-container {
    background: #f8f9fa !important;
    border-radius: 8px !important;
    padding: 1.5rem !important;
    margin: 0 0 1rem 0 !important;
    border: 1px solid rgba(149, 29, 93, 0.1) !important;
}

.success-content.capturing .detail-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.75rem !important;
    background: white !important;
    border-bottom: 1px solid rgba(149, 29, 93, 0.08) !important;
    margin-bottom: 0.5rem !important;
    border-radius: 6px !important;
}

.success-content.capturing .detail-item:last-child {
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

.success-content.capturing .benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 0.75rem !important;
}

.success-content.capturing .benefit-item {
    background: white !important;
    padding: 0.75rem !important;
    border-radius: 6px !important;
    border: 1px solid rgba(149, 29, 93, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.success-content.capturing .benefit-item i {
    color: var(--primary) !important;
    font-size: 1.1rem !important;
}

.success-content.capturing .footer-banner {
    background: #f8f9fa !important;
    padding: 1rem !important;
    text-align: center !important;
    border-top: 1px solid rgba(149, 29, 93, 0.1) !important;
}

.success-content.capturing .footer-banner p {
    color: var(--text-dark) !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

.success-content.capturing .footer-banner .conference-date {
    color: var(--primary) !important;
    font-weight: 600 !important;
    display: block !important;
    margin-top: 0.25rem !important;
}

/* Decorative corner elements */
.success-content.capturing::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 150px !important;
    height: 150px !important;
    background: linear-gradient(135deg, transparent 50%, rgba(149, 29, 93, 0.05) 50%) !important;
    border-radius: 0 15px 0 0 !important;
    z-index: 0 !important;
}

/* Success badge */
.success-content.capturing .modal-header::after {
    content: '✓' !important;
    position: absolute !important;
    top: -15px !important;
    right: -15px !important;
    width: 40px !important;
    height: 40px !important;
    background: var(--primary) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    box-shadow: 0 4px 12px rgba(149, 29, 93, 0.3) !important;
    z-index: 2 !important;
}

@media (max-width: 576px) {
    .success-actions {
        flex-direction: column;
    }

    .download-btn,
    .directions-btn {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .registration-details {
        padding: 0.75rem;
    }

    .detail-item {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Benefits Styles */
.benefits-container {
    position: relative !important;
    z-index: 1 !important;
    margin: 1.25rem 0 !important;
    padding: 1.5rem !important;
    background: white !important;
    border-radius: 8px !important;
    border: 1px solid rgba(149, 29, 93, 0.1) !important;
    text-align: center !important;
}

.benefits-label {
    position: relative !important;
    display: inline-block !important;
    margin-bottom: 1rem !important;
}

.benefits-label span {
    background: white !important;
    color: var(--primary) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 0.25rem 1rem !important;
    border-radius: 12px !important;
    border: 1px solid rgba(149, 29, 93, 0.15) !important;
    font-family: 'Poppins', sans-serif !important;
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 1rem !important;
    margin-top: 1rem !important;
}

.benefit-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    border: 1px solid rgba(149, 29, 93, 0.1) !important;
}

.benefit-item i {
    font-size: 1.2rem !important;
    color: var(--primary) !important;
}

.benefit-item span {
    font-size: 0.8rem !important;
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    text-align: center !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.2 !important;
}

.registration-types {
    margin-bottom: 2rem;
}

.registration-types h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.type-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.type-option {
    position: relative;
}

.type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.type-option label {
    display: block;
    padding: 1rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.type-option input[type="radio"]:checked + label {
    border-color: var(--primary);
    background: rgba(149, 29, 93, 0.05);
    box-shadow: 0 2px 8px rgba(149, 29, 93, 0.1);
}

.type-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.type-header h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.price {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.type-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.benefits-preview {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(149, 29, 93, 0.1);
}

.benefits-preview h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.benefits-preview .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid rgba(149, 29, 93, 0.1);
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.benefit-item span {
    color: var(--text-dark);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .type-selection {
        grid-template-columns: 1fr;
    }
}

.done-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    margin-top: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.done-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 29, 93, 0.2);
}

.done-btn i {
    font-size: 1.1rem;
}

.thank-you-message {
    text-align: center;
    padding: 20px;
    display: none;
}

.thank-you-message i {
    font-size: 3rem;
    color: #951d5d;
    margin-bottom: 15px;
}

.thank-you-message h3 {
    color: #333;
    margin-bottom: 10px;
}

.thank-you-message p {
    color: #666;
}

.workshop-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    color: var(--text-dark);
    border: 1px solid rgba(149, 29, 93, 0.15);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.workshop-btn i {
    color: var(--primary);
    font-size: 1.1rem;
}

.workshop-btn:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 29, 93, 0.1);
    color: var(--primary);
}

@media (max-width: 576px) {
    .workshop-btn {
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
    }
}

/* Verification Alert */
.verification-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(40, 167, 69, 0.95);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
}

.verification-alert.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.verification-alert i {
    font-size: 1.25rem;
}

.verification-alert span {
    font-size: 1rem;
    font-weight: 500;
}

/* Animation for verification alert */
@keyframes alertIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes alertOut {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
}

.verification-alert {
    animation: alertIn 0.3s ease forwards;
}

.verification-alert.hide {
    animation: alertOut 0.3s ease forwards;
}

.success-content.capturing .download-header-logo {
    width: 120px !important;
    height: auto !important;
    margin-bottom: 1rem !important;
    filter: brightness(0) invert(1) !important;
}

.input-error {
    border-color: #dc3545 !important;
    background-color: #fff5f5 !important;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #951d5d;
    outline: none;
    box-shadow: 0 0 0 2px rgba(149, 29, 93, 0.1);
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 150px;
    flex-shrink: 0;
}

.phone-input input {
    flex-grow: 1;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.button-loading {
    position: relative;
    color: transparent !important;
}

.button-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-loading 0.8s linear infinite;
}

@keyframes button-loading {
    to {
        transform: rotate(360deg);
    }
}

.thank-you-message {
    text-align: center;
    padding: 20px;
    display: none;
}

.thank-you-message i {
    font-size: 3rem;
    color: #951d5d;
    margin-bottom: 15px;
}

.thank-you-message h3 {
    color: #333;
    margin-bottom: 10px;
}

.thank-you-message p {
    color: #666;
}