/* ============================================
   CREATE ACCOUNT PAGE SPECIFIC STYLES
   Based on Figma Design - Similar to Logon Page
   ============================================ */

/* ============================================
   LAYOUT STRUCTURE
   ============================================ */
.createaccount-container {
    display: flex;
    width: 100vw;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(0deg, var(--color-ca-bg-alt), var(--color-ca-bg-alt));
}

.createaccount-bg {
    /* Background */
    position: absolute;
    height: 100%;
    left: 0px;
    right: 1109px;
    top: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%), 
                url('/Content/images/GetStarted_Background.png') no-repeat center center;
    background-size: cover;
    display: block;
    padding: 0;
    z-index: 1;
    max-width:400px;
}

.createaccount-logo-section {
    /* Frame 4 - Auto layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    gap: 10px;
    
    position: absolute;
    width: 207px;
    height: 48px;
    left: 19px;
    top: 29px;
    z-index: 2;
}

.createaccount-brand-name {
    /* mykidspending-logo 1 */
    width: 159px;
    height: 18.71px;
    background: url('/Content/images/ms_logo.png') no-repeat center center;
    background-size: contain;
    
    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    display: block;
}

.createaccount-footer-brand {
    position: absolute;
    left: 63.14%;
    bottom: 56px;
    width: 160px;
    height: 39px;
}

.createaccount-footer-logo {
    width: 100%;
    height: 100%;
    display: block;
    background: url('/Content/images/Odin-inc-logo.png') no-repeat center center;
    background-size: contain;
}

/* ============================================
   RIGHT SIDE - FORM CONTENT
   ============================================ */
.createaccount-content {
    /* Frame 5 */
    position: relative;
    width: 1109px;
    min-height: 100vh;
    margin-left: 300px;
    top: 0px;
    background: var(--color-ca-bg-alt);
    display: flex;
    flex-direction: column;
    overflow-y: visible;
}

/* ============================================
   FORM WRAPPER
   ============================================ */
.createaccount-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 var(--spacing-5);
    gap: 20px;
    width: 600px;
    max-width: 90%;
    margin: 0px auto 40px;
    position: relative;
}

/* Alert container with fixed height */
.createaccount-form-wrapper::before {
    content: '';
    display: block;
    height: 60px; /* Reserve space for potential alerts */
    width: 100%;
}

/* ============================================
   HEADER SECTION
   ============================================ */
.createaccount-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    width: 100%;
}

.createaccount-title {
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-semibold);
    font-size: var(--text-3xl);
    line-height: var(--spacing-10);
    color: var(--color-ca-title);
    margin: 0;
    width: 100%;
}

.createaccount-subtitle {
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-normal);
    font-size: var(--text-base);
    line-height: var(--spacing-6);
    color: var(--color-ca-text-secondary);
    margin: 0;
    width: 100%;
}

/* ============================================
   FORM SECTION
   ============================================ */
.createaccount-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0;
    width: 100%;
}

.createaccount-form-fields {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    width: 100%;
}

/* ============================================
   FORM ITEMS
   ============================================ */
.createaccount-form-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 16px;
    width: 100%;
    position: relative;
    min-height: 90px; /* Fixed height to accommodate input + error message */
}

.createaccount-form-item:last-child {
    padding-bottom: 0;
}

/* Label */
.createaccount-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 0 var(--spacing-2);
    gap: var(--spacing-1);
    width: 100%;
    height: 30px;
}

.createaccount-required {
    font-family: 'SF Pro Text', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-normal);
    font-size: var(--text-sm);
    line-height: 22px;
    text-align: right;
    color: var(--color-ca-error);
}

.createaccount-label-text {
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-normal);
    font-size: var(--text-sm);
    line-height: 22px;
    color: var(--color-ca-text);
    flex-grow: 1;
}

/* Input Field */
.createaccount-field {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    width: 100%;
    height: 32px;
    background: var(--color-ca-bg);
    border: 1px solid var(--color-ca-border);
    border-radius: 2px;
    position: relative;
}

.createaccount-input-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px var(--spacing-3);
    gap: var(--spacing-2);
    width: 100%;
    height: 32px;
    background: var(--color-ca-bg);
    border-radius: 2px;
}

.createaccount-input-prefix {
    width: 14px;
    height: 14px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.createaccount-input-prefix svg {
    width: 14px;
    height: 14px;
}

.createaccount-input {
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-normal);
    font-size: var(--text-sm);
    line-height: 22px;
    color: var(--color-ca-text);
    flex-grow: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
}

.createaccount-input::placeholder {
    color: var(--color-ca-text-placeholder);
}

.createaccount-input:focus {
    outline: none;
}

.createaccount-field:focus-within {
    border-color: var(--color-ca-border-focus);
    box-shadow: var(--color-ca-focus-shadow);
}

/* Helper message for School/Company field */
.createaccount-message {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 1px 0;
    width: 100%;
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-normal);
    font-size: var(--text-sm);
    line-height: 22px;
    color: var(--color-ca-text-secondary);
    margin-top: var(--spacing-1);
}

/* Info icon for School/Company field */
.createaccount-info-icon {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    cursor: help;
}

.createaccount-info-icon svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   CHECKBOX SECTION
   ============================================ */
.createaccount-checkbox-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    width: 100%;
    margin-top: 30px;
}

.createaccount-checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 8px;
    width: 100%;
}

.createaccount-checkbox-input {
    width: var(--spacing-4);
    height: var(--spacing-4);
    background: var(--color-ca-bg);
    border: 1px solid var(--color-ca-border);
    border-radius: 2px;
    cursor: pointer;
    accent-color: var(--color-ca-primary);
}

.createaccount-checkbox-label {
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-normal);
    font-size: var(--text-sm);
    line-height: 22px;
    color: var(--color-ca-text);
    cursor: pointer;
}

.createaccount-checkbox-label a {
    color: var(--color-ca-primary);
    text-decoration: none;
}

.createaccount-checkbox-label a:hover {
    text-decoration: underline;
}

/* ============================================
   BUTTONS SECTION
   ============================================ */
.createaccount-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    width: 100%;
    margin-top: 30px;
}

.createaccount-btn-primary {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6.4px var(--spacing-6);
    width: 100%;
    height: var(--spacing-10);
    background: var(--color-ca-primary);
    border: 1px solid var(--color-ca-primary);
    box-shadow: var(--color-ca-shadow-button);
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-medium);
    font-size: var(--text-base);
    line-height: var(--spacing-6);
    text-align: center;
    color: var(--color-text-light);
}

.createaccount-btn-primary:hover {
    background: var(--color-ca-primary-hover);
    border-color: var(--color-ca-primary-hover);
    transform: translateY(-1px);
}

.createaccount-btn-primary:active {
    background: var(--color-ca-primary-active);
    border-color: var(--color-ca-primary-active);
    transform: translateY(0);
}

.createaccount-btn-primary:disabled {
    background: var(--color-ca-disabled-bg);
    border-color: var(--color-ca-border);
    color: var(--color-ca-text-disabled);
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   ALERT/ERROR MESSAGES
   ============================================ */
.createaccount-alert {
    padding: var(--spacing-3) var(--spacing-4);
    border-radius: 2px;
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    width: 100%;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.createaccount-alert-danger {
    background: var(--color-ca-error-bg);
    border: 1px solid var(--color-ca-error-border);
    color: var(--color-ca-error-text);
}

.createaccount-alert-success {
    background: var(--color-ca-success-bg);
    border: 1px solid var(--color-ca-success-border);
    color: var(--color-ca-success-text);
}

.createaccount-alert-info {
    background: var(--color-ca-info-bg);
    border: 1px solid var(--color-ca-info-border);
    color: var(--color-ca-info-text);
}

/* Account-already-exists banner */
.createaccount-alert-exists {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fffbeb;
    border: 1px solid #f59e0b;
    color: #92400e;
    border-radius: 6px;
    padding: 14px 16px;
    width: 100%;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.createaccount-alert-exists-icon {
    flex-shrink: 0;
    color: #d97706;
}

.createaccount-alert-exists-body {
    flex: 1;
    min-width: 0;
}

.createaccount-alert-exists-body strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.createaccount-alert-exists-body p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.4;
}

.createaccount-alert-exists-btn {
    flex-shrink: 0;
    display: inline-block;
    padding: 7px 18px;
    background: #d97706;
    color: #fff !important;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s;
}

.createaccount-alert-exists-btn:hover {
    background: #b45309;
    color: #fff !important;
    text-decoration: none;
}

/* ── Generic modal ───────────────────────────────────────── */
.ca-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    padding: 16px;
}

.ca-modal {
    background: #fff;
    border-radius: 12px;
    padding: 36px 32px 28px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    text-align: center;
    animation: caModalIn 0.2s ease;
}

@keyframes caModalIn {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.ca-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ca-modal-icon-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 2px solid #86efac;
}

.ca-modal-icon-warning {
    background: #fffbeb;
    color: #d97706;
    border: 2px solid #f59e0b;
}

.ca-modal-icon-error {
    background: #fef2f2;
    color: #dc2626;
    border: 2px solid #fca5a5;
}

.ca-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}

.ca-modal-body {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.ca-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.ca-modal-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    min-width: 100px;
}

.ca-modal-btn-primary {
    background: #2563eb;
    color: #fff !important;
}

.ca-modal-btn-primary:hover {
    background: #1d4ed8;
    color: #fff !important;
    text-decoration: none;
}

.ca-modal-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.ca-modal-btn-secondary:hover {
    background: #e5e7eb;
}

.createaccount-validation-message {
    color: var(--color-ca-error);
    font-size: var(--text-xs);
    margin-top: var(--spacing-1);
    display: block;
    position: absolute;
    bottom: var(--spacing-4);
    left: 0;
    width: 100%;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.createaccount-faq-section {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-10) 302px var(--spacing-10);
    width: 100%;
    background: var(--color-ca-bg);
    margin-top: 0;
    min-height: auto;
    visibility: visible;
}

.createaccount-faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: var(--spacing-8);
    width: 996px;
    max-width: 100%;
}

.createaccount-faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: var(--spacing-2);
    width: 100%;
}

.createaccount-faq-title {
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-semibold);
    font-size: var(--text-3xl);
    line-height: var(--spacing-10);
    text-align: center;
    color: var(--color-ca-faq-title);
    margin: 0;
}

.createaccount-faq-subtitle {
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-normal);
    font-size: var(--text-base);
    line-height: var(--spacing-6);
    text-align: center;
    color: var(--color-ca-text-secondary);
    margin: 0;
}

.createaccount-faq-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 20px;
    width: 100%;
}

.createaccount-faq-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 20px;
    width: 100%;
}

.createaccount-faq-question-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 100%;
}

.createaccount-faq-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    flex-grow: 1;
}

.createaccount-faq-question {
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-medium);
    font-size: var(--text-xl);
    line-height: 28px;
    color: #000000;
    margin: 0;
    cursor: pointer;
    width: 100%;
}

.createaccount-faq-answer {
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-normal);
    font-size: var(--text-sm);
    line-height: 22px;
    color: var(--color-ca-text);
    margin: var(--spacing-2) 0 0 0;
    padding-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out, margin-top 0.4s ease-in-out;
    opacity: 0;
}

.createaccount-faq-item.active .createaccount-faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-top: var(--spacing-2);
    margin-top: var(--spacing-2);
    transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out, margin-top 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.createaccount-faq-icon {
    width: var(--spacing-6);
    height: var(--spacing-6);
    margin-top: 2px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.createaccount-faq-icon svg {
    transition: all 0.3s ease;
}

/* Hide the vertical line (making it a minus sign) when FAQ is active */
.createaccount-faq-item.active .createaccount-faq-icon svg line:first-of-type {
    opacity: 0;
    transform: rotate(90deg);
}

.createaccount-faq-divider {
    width: 100%;
    height: 0;
    border: 1px solid var(--color-ca-divider);
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.createaccount-footer-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 50px 0 0;
    gap: 91px;
    width: 100%;
    max-width: 1291px;
    min-height: 300px;
    margin: 80px auto;
    background: #FFFFFF;
    box-shadow: 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 6px 16px rgba(0, 0, 0, 0.08), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
}

.createaccount-footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 40px;
    gap: 144px;
    min-width: 400px;
    max-width: 600px;
    height: 300px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%), 
                url('/Content/images/GetStarted_Background.png') no-repeat center center;
    background-size: cover;
    flex: none;
    align-self: stretch;
}

.createaccount-footer-logo-container {
    margin: 0 auto;
    width: 204px;
    height: 24px;
}

.createaccount-footer-logo-img {
    width: 204px;
    height: 24px;
    background: url('/Content/images/ms_logo.png') no-repeat center center;
    background-size: contain;
}

.createaccount-footer-odin-logo {
    margin: 0 auto;
    width: 173px;
    height: 48px;
    background: url('/Content/images/Odin-inc-logo.png') no-repeat center center;
    background-size: contain;
}

.createaccount-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    flex-grow: 1;
}

.createaccount-footer-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 100px;
    width: 100%;
}

.createaccount-footer-links-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
}

.createaccount-footer-link {
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    line-height: var(--spacing-6);
    color: var(--color-ca-footer-text);
    text-decoration: none;
    transition: color var(--transition-base);
}

.createaccount-footer-link:hover {
    color: var(--color-ca-primary);
}

.createaccount-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 23px;
}

.createaccount-footer-contact-title {
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    line-height: var(--spacing-6);
    color: var(--color-ca-text);
}

.createaccount-footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
}

.createaccount-footer-contact-item {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding: 0;
    gap: 8px;
}

.createaccount-footer-contact-label {
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    line-height: var(--spacing-6);
    color: var(--color-ca-footer-text);
}

.createaccount-footer-contact-value {
    font-family: 'Inter', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-normal);
    font-size: var(--text-sm);
    line-height: 22px;
    text-decoration-line: underline;
    color: var(--color-ca-text-secondary);
}

.createaccount-footer-copyright {
    font-family: 'Roboto', var(--font-family-base);
    font-style: normal;
    font-weight: var(--font-normal);
    font-size: var(--text-xs);
    line-height: var(--spacing-5);
    text-decoration-line: underline;
    color: var(--color-ca-text-secondary);
}

/* ============================================
   PROCESSING POPUP
   ============================================ */
.processing-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    text-align: center;
}

.spinnerpayment {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--color-ca-primary);
    border-radius: 50%;
    width: var(--spacing-10);
    height: var(--spacing-10);
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1200px) {
    .createaccount-bg {
        width: 400px;
        height:1000px;
    }
    
    .createaccount-content {
        width: calc(100vw - 400px);
        margin-left: 400px;
    }
    
    .createaccount-form-wrapper {
        width: 450px;
    }
    
    .createaccount-faq-section {
        padding: 80px 150px 60px;
    }
}

/* ============================================
   MOBILE BANNER (below mobile-topbar)
   ============================================ */
.ca-mobile-banner {
    display: none;
}

@media (max-width: 991.98px) {
    .ca-mobile-banner {
        display: block;
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .ca-mobile-banner__img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 992px) {
    .createaccount-bg {
        width: 300px;
    }
    
    .createaccount-content {
        width: calc(100vw - 300px);
        margin-left: 300px;
    }
    
    .createaccount-form-wrapper {
        width: 90%;
    }
    
    .createaccount-faq-section {
        padding: 60px 80px 40px;
    }
    
    .createaccount-footer-section {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }
    
    .createaccount-footer-left {
        min-width: 100%;
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .createaccount-bg {
        display: none;
    }
    
    .createaccount-content {
        width: 100vw;
        margin-left: 0;
    }
    
    .createaccount-form-wrapper {
        padding: 0 var(--spacing-5);
        margin: 10px auto;
    }

    .createaccount-form-wrapper::before {
        display: none;
    }
    
    .createaccount-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .createaccount-subtitle {
        font-size: 14px;
        line-height: 20px;
    }
    
    .createaccount-faq-section {
        padding: 40px 20px;
    }
    
    .createaccount-faq-container {
        width: 100%;
    }
    
    .createaccount-faq-title {
        font-size: 18px;
        line-height: 24px;
    }

    .createaccount-faq-subtitle {
        font-size: 13px;
        line-height: 18px;
    }

    .createaccount-faq-question {
        font-size: 15px;
        line-height: 22px;
    }
    
    .createaccount-footer-section {
        padding: 20px;
        gap: 20px;
        margin: 40px 20px;
    }
    
    .createaccount-footer-links {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .createaccount-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .createaccount-form-wrapper {
        margin: 10px auto;
        gap: 24px;
    }
}
