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

/* Disable browser's default validation messages */
form input:invalid,
form select:invalid,
form textarea:invalid {
    box-shadow: none;
}

form input:invalid:focus,
form select:invalid:focus,
form textarea:invalid:focus {
    box-shadow: none;
    outline: none;
}

/* Hide browser's default validation tooltip */
form input:invalid::-webkit-validation-bubble,
form select:invalid::-webkit-validation-bubble,
form textarea:invalid::-webkit-validation-bubble {
    display: none;
}

/* jqBootstrapValidation styles (matching Admin-Themes) */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #f64e60;
}

/* Error messages now use span with Bootstrap classes - no custom CSS needed */

.form-group.validate input,
.form-group.validate select,
.form-group.validate textarea {
    border-color: #1bc5bd;
}

/* Issue messages now use span with Bootstrap classes - no custom CSS needed */

.form-group.has-error .help-block {
    color: #f64e60;
    font-size: 0.875rem;
    margin-top: 6px;
}

.form-group.has-error label {
    color: #f64e60;
}

.form-group.has-error .form-control {
    border-color: #f64e60;
    box-shadow: none;
}

.form-group.has-success .help-block {
    color: #1bc5bd;
    font-size: 0.875rem;
    margin-top: 6px;
}

.form-group.has-success label {
    color: #1bc5bd;
}

.form-group.has-success .form-control {
    border-color: #1bc5bd;
    box-shadow: none;
}

/* Help block styling - prevent layout shift */
.help-block {
    display: block;
    margin-top: 6px;
    margin-bottom: 0;
    min-height: 20px; /* Reserve space to prevent layout shift */
    line-height: 1.4;
    visibility: hidden; /* Hide when empty but reserve space */
    opacity: 0;
    transition: opacity 0.2s ease;
}

.help-block:not(:empty) {
    visibility: visible; /* Show when has content */
    opacity: 1;
}

.help-block span {
    display: block;
    width: 100%;
}

/* Form control transitions */
.form-control {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.form-control:focus:not(.is-invalid):not(.is-valid) {
    border-color: #05a68b !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(5, 166, 139, 0.1) !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-image: var(--signup-bg, linear-gradient(135deg, #ffffff 0%, #f8fafc 100%));
    background-size: cover;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    /* Disable text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for input fields */
input,
textarea,
select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* =========================
   Modern Signup Redesign (Theme-aware)
   ========================= */

body.light-mode {
    --signup-bg: radial-gradient(1200px 600px at 10% 10%, rgba(20, 184, 166, 0.14) 0%, rgba(255, 255, 255, 0) 55%),
        radial-gradient(900px 600px at 90% 15%, rgba(59, 130, 246, 0.10) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --signup-surface: rgba(255, 255, 255, 0.82);
    --signup-border: rgba(17, 24, 39, 0.10);
    --signup-text: #0f172a;
    --signup-muted: rgba(15, 23, 42, 0.72);
    --signup-muted-2: rgba(15, 23, 42, 0.55);
    --signup-accent: #14B8A6;
    --signup-accent-2: #0D9488;
    --signup-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
}

body.dark-mode {
    --signup-bg: radial-gradient(1100px 700px at 10% 15%, rgba(20, 184, 166, 0.18) 0%, rgba(11, 18, 32, 0) 55%),
        radial-gradient(900px 700px at 85% 10%, rgba(140, 180, 255, 0.16) 0%, rgba(11, 18, 32, 0) 55%),
        linear-gradient(135deg, #0b1220 0%, #0f172a 100%);
    --signup-surface: rgba(31, 41, 55, 0.62);
    --signup-border: rgba(255, 255, 255, 0.10);
    --signup-text: #f9fafb;
    --signup-muted: rgba(209, 213, 219, 0.86);
    --signup-muted-2: rgba(209, 213, 219, 0.65);
    --signup-accent: #8cb4ff;
    --signup-accent-2: #2dd4bf;
    --signup-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

/* Header */
.signup-header {
    background: transparent;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.signup-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.signup-header-logo img {
    height: 30px;
    width: 30px;
    object-fit: contain;
}

.signup-header-logo .logo-text {
    height: 21px;
    width: auto;
}

/* Header actions + theme toggle */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    border: 1px solid var(--signup-border);
    background: rgba(255, 255, 255, 0.0);
    color: var(--signup-muted);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.theme-toggle i {
    font-size: 18px;
}

body.dark-mode .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}

.signup-container {
    width: 100%;
    min-height: calc(100vh - 72px);
    padding: 18px 16px 28px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

@media (max-width: 1024px) {
    .signup-container {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .signup-right-panel {
        justify-self: stretch;
    }
}

/* Right Panel - Sign Up Form */
.signup-right-panel {
    max-width: 680px;
    width: 100%;
    margin: 0;
    justify-self: end;
}

.right-panel-header {
    margin-bottom: 30px;
    background: var(--signup-surface);
    border: 1px solid var(--signup-border);
    border-top: 6px solid #0e978b;
    border-radius: 24px;
    box-shadow: var(--signup-shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 42px 34px;
}

body.dark-mode .right-panel-header {
    border-top-color: var(--signup-accent);
}

/* Illustration (like login) */
.signup-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    justify-self: start;
}

.signup-hero-card {
    background: transparent;
    border: none;
    padding: 0;
}

.signup-hero-image {
    width: min(640px, 100%);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 22px 36px rgba(17, 24, 39, 0.08));
    transition: transform 450ms cubic-bezier(.2,.8,.2,1), opacity 450ms ease, filter 450ms ease;
    will-change: transform, opacity, filter;
    opacity: 1;
}

.signup-hero-image:hover {
    transform: translateY(-10px) scale(1.02) rotate(-0.4deg);
    filter: drop-shadow(0 26px 46px rgba(17, 24, 39, 0.12));
}

body.dark-mode .signup-hero-image {
    filter: grayscale(1) drop-shadow(0 22px 36px rgba(0, 0, 0, 0.28));
}

body.dark-mode .signup-hero-image:hover {
    filter: grayscale(1) drop-shadow(0 26px 46px rgba(0, 0, 0, 0.38));
}

.trial-offer-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--signup-muted);
    margin-bottom: 22px;
    text-align: center;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnContainer {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 16px;
    margin-bottom: 0;
}

.signupBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #dadce0;
    background-color: #fff;
    color: #3c4043;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1);
}

.signupBtn:hover {
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.2);
    border-color: #dadce0;
    background-color: #f8f9fa;
}

.signupBtn:active {
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3);
    background-color: #f1f3f4;
}

.google-signup-btn {
    background-color: #fff;
    border: 1px solid #dadce0;
    color: #3c4043;
}

.google-signup-btn:hover {
    border-color: #dadce0;
    color: #202124;
    background-color: #f8f9fa;
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.2);
}

.google-signup-btn:active {
    background-color: #f1f3f4;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3);
}

.google-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.google-signup-btn svg {
    height: 20px;
    width: 20px;
    flex-shrink: 0;
    display: block;
}

.btnText {
    font-size: 15px;
    font-weight: 500;
    color: #3c4043;
    letter-spacing: 0.1px;
}

.google-signup-btn:hover .btnText {
    color: #202124;
}

.btnContainer {
    width: 100%;
    margin-bottom: 0;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 40px auto;
    width: 100%;
    justify-content: space-between;
    cursor: auto;
}

.divider .line {
    width: 15%;
    height: 0px;
    border: 1px solid #bcbcbc;
}

.divider .orLine {
    padding: 0 15px;
    white-space: pre-wrap;
    color: #bcbcbc;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
}

.signup-form {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    grid-gap: 16px;
}

/* Bootstrap row/col for form fields - no custom form-row needed */
.row.g-3 {
    margin-left: 0;
    margin-right: 0;
    gap: 16px; /* Match signup-form grid-gap */
    display: flex;
    flex-wrap: wrap;
}

.row.g-3 > .col-6,
.row.g-3 > .col-md-6 {
    padding-left: 0;
    padding-right: 0;
    flex: 0 0 50%; /* Force 50% width, no grow/shrink */
    max-width: 50%; /* Ensure max 50% width */
}

@media (max-width: 767px) {
    .row.g-3 > .col-6:first-child,
    .row.g-3 > .col-6:last-child,
    .row.g-3 > .col-md-6:first-child,
    .row.g-3 > .col-md-6:last-child {
        padding-left: 0;
        padding-right: 0;
    }
}

.form-group {
    margin-bottom: 0px !important;
}

.form-group .form-label {
    display: none;
}

.form-group input {
    width: 100%;
    padding: 14px;
    padding-left: 14px;
    padding-right: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid var(--signup-border);
    color: var(--signup-text);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    height: 40px;
}

.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field .form-control {
    padding-right: 44px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    border: none;
    background: transparent;
    color: var(--signup-muted);
    padding: 0;
    cursor: pointer;
    height: 24px;
    width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.toggle-password:hover {
    color: var(--signup-text);
}

body.dark-mode .form-group input {
    background: rgba(31, 41, 55, 0.55);
}

.form-group input::placeholder {
    color: #9e9e9e;
}

.form-group input:focus {
    outline: none;
    border-color: #05a68b;
    box-shadow: 0 0 0 0.25rem rgba(5, 166, 139, 0.25);
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.next-step-btn {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--signup-accent) 0%, var(--signup-accent-2) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-step-btn:hover {
    background-color: #05a68b;
    opacity: 0.9;
}

.login-link {
    text-align: center;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--signup-muted);
}

.login-link a {
    color: var(--signup-accent);
    text-decoration: underline !important;
    font-weight: 600;
}

.login-link a:hover {
    color: #222;
}

/* Trust Section */
.trust-section {
    background-color: #fff;
    padding: 60px 50px;
    text-align: center;
}

.trust-heading {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.trust-logo-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 80px;
    transition: all 0.3s;
}

.trust-logo-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.trust-logo-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

/* ====================================================================
   Step 2 Form Styles (After Google Sign-in)
   ==================================================================== */

.step2-form-container {
    margin-top: 10px;
}

.user-profile-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.user-profile-details {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.user-profile-actions {
    margin-left: auto;
}

.profile-reset-btn {
    border: 1px solid var(--signup-border);
    background: #ffffff;
    color: var(--signup-muted);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.profile-reset-btn:hover {
    color: var(--signup-text);
}

body.dark-mode .profile-reset-btn {
    background: rgba(31, 41, 55, 0.65);
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.step2-form {
    margin-top: 0;
}

.step2-form .form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
    height: auto !important;
}

.step2-form .form-row .form-group {
    flex: none !important;
    height: auto !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    display: flex;
    flex-direction: column;
}

.step2-form .form-group {
    margin-bottom: 0;
}

.step2-form .form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
    font-size: 13px;
}

.step2-form .form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: #F4F6FC;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
}

/* Exception for phone input group - let flex handle width */
.step2-form .phone-input-group .form-control {
    width: auto !important;
}

.step2-form .form-control:focus {
    outline: none;
    border-color: #05a68b;
    box-shadow: 0 0 0 0.25rem rgba(5, 166, 139, 0.25);
}

/* Step 2 form validation styles - Admin Themes Style */
.step2-form .was-validated .form-control:invalid,
.step2-form .form-control.is-invalid {
    border-color: #ff3f3f;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff3f3f'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff3f3f' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.step2-form .was-validated .form-control:invalid:focus,
.step2-form .form-control.is-invalid:focus {
    border-color: #ff3f3f;
    box-shadow: 0 0 0 0.25rem rgba(255, 63, 63, 0.25);
}

.step2-form .was-validated .form-control:valid,
.step2-form .form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.98-.98-.98-.98-.98.98.98.98zm5.4-5.4.98-.98-.98-.98-.98.98.98.98z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Step 2 OTP Input Verified State - Better Design */
.step2-form .otp-input.is-valid {
    border-color: #10b981 !important;
    background-color: #f0fdf4 !important;
    color: #065f46;
    padding-right: 45px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' fill='%2310b981'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px 20px;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.step2-form .otp-input.is-valid:disabled {
    background-color: #f0fdf4 !important;
    border-color: #10b981 !important;
    opacity: 1;
    cursor: default;
}

.step2-form .was-validated .form-control:valid:focus,
.step2-form .form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
}

.step2-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.phone-input-group {
    display: flex;
    gap: 8px;
    width: 100%;
}

.step2-form .phone-input-group {
    width: 100% !important;
    display: flex !important;
    gap: 8px;
    box-sizing: border-box;
    align-items: stretch;
}

.step2-form .phone-input-group .country-code-select {
    flex: 0 0 110px !important;
    width: 110px !important;
    min-width: 110px !important;
    max-width: 110px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

.step2-form .phone-input-group #phoneNumber {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    width: 0 !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

/* Override any conflicting form-control styles for phone number */
.step2-form .phone-input-group input.form-control {
    flex: 1 1 0% !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: none !important;
}

/* Ensure form-control width doesn't override flex */
.step2-form .phone-input-group .form-control {
    width: auto !important;
}

/* Full width form groups (for OTP, checkbox, etc.) */
.step2-form > .form-group:not(.form-row) {
    margin-bottom: 16px;
}

.step2-form .form-group.checkbox-group {
    margin-top: 8px;
    margin-bottom: 16px;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .step2-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .step2-form .phone-input-group .country-code-select {
        width: 100px !important;
        min-width: 90px;
    }
}

.otp-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
}

.otp-input {
    flex: 1;
    text-align: center;
    font-size: 16px;
    letter-spacing: 6px;
    font-weight: 600;
    height: 44px;
    padding: 0 14px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

/* OTP Input Verified State - Better Design */
.otp-input.is-valid {
    border-color: #22c55e !important;
    background-color: #f6fffb !important;
    color: #166534;
    padding-right: 52px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' fill='%2310b981'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px 20px;
    box-shadow: none;
}

.otp-input.is-valid:disabled {
    background-color: #f0fdf4 !important;
    border-color: #10b981 !important;
    opacity: 1;
    cursor: default;
}

.btn-resend-otp {
    height: 44px;
    padding: 0 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.btn-resend-otp:disabled {
    background: #f3f4f6;
    color: #9ca3af;
    border-color: #e5e7eb;
    opacity: 1;
    cursor: not-allowed;
}

.btn-resend-otp:not(:disabled):hover {
    background: #e9ecef;
}

/* Duplicate removed - using main .help-block definition above */

.text-danger {
    color: #dc3545;
}

.text-success {
    color: #28a745;
}

.checkbox-group {
    margin: 8px 0 16px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-create-account {
    width: 100%;
    padding: 12px;
    background: #20c997;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

.btn-create-account:hover {
    background: #1aa179;
}

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

.is-valid {
    border-color: #28a745;
}

.is-invalid {
    border-color: #dc3545;
}

/* Select2 Customization */
.select2-container--default .select2-selection--single {
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .signup-header {
        padding: 15px 20px;
    }

    .signup-container {
        min-height: calc(100vh - 71px);
        padding: 20px;
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .signup-right-panel {
        max-width: 100%;
        justify-self: stretch;
    }

    .right-panel-header {
        padding: 28px 20px !important;
        margin-bottom: 20px;
        border-radius: 18px !important;
    }

    .trial-offer-text {
        font-size: 16px !important;
        margin-bottom: 20px !important;
        line-height: 1.4 !important;
    }

    .signup-form {
        grid-gap: 0px !important;
    }

    .form-group {
        margin-bottom: 0px !important;
    }

    .row.g-3 {
        gap: 8px !important;
        margin-bottom: 0 !important;
        flex-wrap: wrap !important;
    }

    .row.g-3 > .col-6,
    .row.g-3 > .col-md-6 {
        margin-bottom: 0 !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .row.g-3 > .col-6 .form-group,
    .row.g-3 > .col-md-6 .form-group {
        margin-bottom: 0 !important;
    }

    .next-step-btn {
        margin-top: 16px !important;
        padding: 12px 20px !important;
        font-size: 15px !important;
    }

    .login-link {
        margin-top: 16px !important;
        font-size: 14px !important;
    }

    .signup-hero {
        display: none;
    }

    .platform-text {
        font-size: 18px;
    }

    .platform-icon {
        height: 24px;
        width: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .phone-input-group {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .otp-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }
}


