/* Register Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.register-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    width: 100%;
    min-height: calc(100vh - 140px);
    margin: 0 auto;
    gap: 0;
}

/* Left Side - Branding */
.register-left {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.register-branding {
    max-width: 500px;
}

.register-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}

.brand-name {
    color: #60a5fa;
    font-size: 48px;
    display: block;
    margin-top: 10px;
}

.rating-badge {
    margin: 30px 0;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.stars i {
    color: #fbbf24;
    font-size: 24px;
}

.rating-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.features-list {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.feature-item i {
    color: #10b981;
    font-size: 24px;
}

.testimonial {
    margin: 40px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid #60a5fa;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
    color: #fff;
}

.testimonial-author {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
    margin: 0;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 2px solid #10b981;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 28px;
    color: #fff;
}

.badge-text strong {
    display: block;
    font-size: 16px;
    color: #10b981;
    margin-bottom: 5px;
}

.badge-text p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Right Side - Form */
.register-right {
    background: #fff;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-form-container {
    width: 100%;
    max-width: 500px;
}

.register-form-container .logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.register-form-container .logo-container a {
    display: inline-block;
    transition: opacity 0.3s;
}

.register-form-container .logo-container a:hover {
    opacity: 0.8;
}

.register-form-container .page-logo {
    height: 70px;
    width: auto;
    display: inline-block;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 40px;
    text-align: center;
}

.register-form {
    width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    z-index: 1;
}

.input-icon i {
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    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='currentColor' 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;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.email-suggestions {
    margin: 20px 0;
    padding: 15px;
    background: #f3f4f6;
    border-radius: 8px;
}

.email-suggestions p {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 10px;
}

.suggestion-emails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-emails span {
    font-size: 12px;
    color: #60a5fa;
    background: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.suggestion-emails span:hover {
    background: #60a5fa;
    color: #fff;
}

.terms-checkbox {
    margin: 25px 0;
    display: flex;
    gap: 10px;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.terms-checkbox label {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
}

.terms-checkbox label a {
    color: #60a5fa;
    text-decoration: none;
}

.terms-checkbox label a:hover {
    text-decoration: underline;
}

.free-draft-notice {
    text-align: center;
    margin: 30px 0 20px;
    padding: 15px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: 8px;
}

.free-draft-notice h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.btn-signup {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-signup:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}



/* Responsive Design */

/* Large Desktop - 1440px and above */
@media (min-width: 1440px) {
    .register-container {
        max-width: 1600px;
    }
}

/* Laptop - 1024px to 1439px */
@media (max-width: 1439px) {
    .register-left {
        padding: 50px;
    }
    
    .register-right {
        padding: 50px;
    }
}

/* Tablet Landscape - 768px to 1023px */
@media (max-width: 1023px) {
    .register-container {
        grid-template-columns: 1fr;
    }

    .register-left {
        padding: 40px;
        min-height: auto;
    }

    .register-right {
        padding: 40px;
    }

    .register-title {
        font-size: 36px;
    }

    .brand-name {
        font-size: 40px;
    }
    
    .features-list {
        margin: 30px 0;
    }
    
    .testimonial {
        margin: 30px 0;
    }
}

/* Tablet Portrait - 600px to 767px */
@media (max-width: 767px) {
    .register-section {
        padding: 0;
    }
    
    .register-left {
        padding: 30px 20px;
    }

    .register-right {
        padding: 30px 20px;
    }

    .register-form-container .page-logo {
        height: 60px;
    }

    .register-title {
        font-size: 28px;
    }

    .brand-name {
        font-size: 32px;
    }

    .form-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .feature-item {
        font-size: 16px;
    }

    .feature-item i {
        font-size: 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }
    
    .stars i {
        font-size: 20px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .security-badge {
        padding: 15px;
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
    }
    
    .badge-icon i {
        font-size: 24px;
    }
}

/* Mobile Large - 480px to 599px */
@media (max-width: 599px) {
    .register-left {
        padding: 25px 18px;
    }

    .register-right {
        padding: 25px 18px;
    }
    
    .register-title {
        font-size: 26px;
    }

    .brand-name {
        font-size: 30px;
    }
    
    .form-title {
        font-size: 26px;
    }
    
    .feature-item {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .whatsapp-float {
        width: 48px;
        height: 48px;
    }
}

/* Mobile Medium - 375px to 479px */
@media (max-width: 479px) {
    .register-section {
        min-height: 100vh;
        padding: 0;
    }
    
    .register-container {
        min-height: 100vh;
        grid-template-columns: 1fr;
    }
    
    .register-left {
        padding: 20px 15px;
        min-height: auto;
        order: 2;
    }

    .register-right {
        padding: 20px 15px;
        order: 1;
        min-height: auto;
    }

    .register-form-container .page-logo {
        height: 50px;
    }

    .register-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .brand-name {
        font-size: 28px;
    }

    .form-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .rating-badge {
        margin: 20px 0;
    }
    
    .stars i {
        font-size: 18px;
    }
    
    .rating-text {
        font-size: 14px;
    }
    
    .features-list {
        margin: 25px 0;
    }
    
    .feature-item {
        font-size: 14px;
        margin-bottom: 12px;
        gap: 12px;
    }

    .feature-item i {
        font-size: 18px;
    }
    
    .testimonial {
        margin: 25px 0;
        padding: 18px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-author {
        font-size: 13px;
    }
    
    .security-badge {
        margin-top: 25px;
        padding: 15px;
        gap: 15px;
    }
    
    .badge-icon {
        width: 45px;
        height: 45px;
    }
    
    .badge-icon i {
        font-size: 20px;
    }
    
    .badge-text strong {
        font-size: 14px;
    }
    
    .badge-text p {
        font-size: 12px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 12px 12px 40px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .form-group select {
        background-position: right 10px center;
        background-size: 14px;
    }

    .btn-signup {
        padding: 14px;
        font-size: 16px;
        min-height: 48px;
    }
    
    .signin-link p {
        font-size: 13px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
    
    .terms-checkbox {
        margin: 20px 0;
    }
    
    .terms-checkbox label {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* Mobile Small - 320px to 374px */
@media (max-width: 374px) {
    .register-section {
        min-height: 100vh;
        padding: 0;
    }
    
    .register-container {
        min-height: 100vh;
        grid-template-columns: 1fr;
    }
    
    .register-left {
        padding: 15px 12px;
        order: 2;
        min-height: auto;
    }

    .register-right {
        padding: 15px 12px;
        order: 1;
        min-height: auto;
    }
    
    .register-form-container .page-logo {
        height: 45px;
    }
    
    .register-title {
        font-size: 22px;
    }

    .brand-name {
        font-size: 26px;
    }

    .form-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .stars i {
        font-size: 16px;
    }
    
    .rating-text {
        font-size: 13px;
    }
    
    .feature-item {
        font-size: 13px;
        gap: 10px;
    }

    .feature-item i {
        font-size: 16px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .security-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .form-group input,
    .form-group select {
        padding: 11px 11px 11px 38px;
        font-size: 13px;
        min-height: 42px;
    }
    
    .form-group select {
        background-position: right 8px center;
        background-size: 12px;
    }
    
    .input-icon {
        left: 12px;
    }
    
    .input-icon i {
        font-size: 14px;
    }

    .btn-signup {
        padding: 13px;
        font-size: 15px;
        min-height: 46px;
    }
    
    .whatsapp-float {
        width: 42px;
        height: 42px;
        bottom: 12px;
        right: 12px;
    }

    .whatsapp-float i {
        font-size: 22px;
    }
    
    .terms-checkbox {
        margin: 18px 0;
    }
    
    .terms-checkbox label {
        font-size: 10px;
        line-height: 1.4;
    }
}

/* Landscape Orientation for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .register-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .register-left {
        padding: 20px;
    }
    
    .register-right {
        padding: 20px;
    }
    
    .register-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .brand-name {
        font-size: 28px;
    }
    
    .features-list,
    .testimonial,
    .security-badge {
        margin: 15px 0;
    }
    
    .form-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}
/* Success Modal Styles */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.success-modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.success-modal.show .success-modal-content {
    transform: scale(1);
}

.success-icon {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 20px;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-modal h2 {
    color: #1f2937;
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 600;
}

.client-id-display {
    margin-bottom: 24px;
}

.client-id-display p {
    color: #6b7280;
    margin-bottom: 8px;
    font-size: 16px;
}

.client-id-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.success-details {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.success-details p {
    margin: 8px 0;
    color: #374151;
    font-size: 14px;
}

.success-details strong {
    color: #1f2937;
    font-weight: 600;
}

.success-message {
    color: #6b7280;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
}

.loading-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #6b7280;
    font-size: 14px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Notification Styles */
.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    min-width: 300px;
    max-width: 400px;
}

.error-notification.show {
    transform: translateX(0);
}

.error-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.error-content i {
    color: #ef4444;
    font-size: 18px;
}

.error-content span {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-modal-content {
        padding: 24px;
        margin: 20px;
    }
    
    .success-modal h2 {
        font-size: 24px;
    }
    
    .client-id-badge {
        font-size: 20px;
        padding: 10px 20px;
    }
    
    .error-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        transform: translateY(-100%);
    }
    
    .error-notification.show {
        transform: translateY(0);
    }
}

/* Success Modal Styles */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.success-modal-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.success-modal.show .success-modal-content {
    transform: translateY(0);
}

.success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-modal h2 {
    color: #28a745;
    margin-bottom: 20px;
    font-size: 24px;
}

.client-id-display {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #28a745;
}

.client-id-display p {
    margin: 0 0 10px 0;
    font-weight: 600;
    color: #495057;
}

.client-id-badge {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
    background: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #28a745;
    display: inline-block;
    font-family: 'Courier New', monospace;
}

.success-details {
    text-align: left;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.success-details p {
    margin: 5px 0;
    color: #495057;
}

.success-message {
    margin: 20px 0;
    padding: 15px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    color: #155724;
}

.loading-indicator {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #6c757d;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Notification Styles */
.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #dc3545;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.error-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.error-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-content i {
    font-size: 18px;
}

/* Mobile Number Input Field Styles */
.mobile-input-container {
    position: relative;
    margin-bottom: 20px;
}

.mobile-input-container .mobile-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.mobile-label .required {
    color: #ef4444;
    margin-left: 2px;
}

.mobile-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-input-wrapper:focus-within {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.country-code {
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
    padding: 15px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 70px;
    justify-content: center;
}

.country-flag {
    width: 20px;
    height: 15px;
    background: linear-gradient(to bottom, #ff9933 33%, #fff 33%, #fff 66%, #138808 66%);
    border-radius: 2px;
    display: inline-block;
    position: relative;
}

.country-flag::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" fill="%23000080"/><path d="M12 2L12 22M2 12L22 12M5.636 5.636L18.364 18.364M18.364 5.636L5.636 18.364" stroke="%23000080" stroke-width="0.5"/></svg>') center/contain no-repeat;
}

.mobile-number-input {
    flex: 1;
    border: none;
    padding: 15px 16px;
    font-size: 15px;
    background: transparent;
    outline: none;
    color: #374151;
}

.mobile-number-input:disabled {
    background-color: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
}

.mobile-number-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.mobile-number-input:disabled::placeholder {
    color: #d1d5db;
}

/* Alternative simpler design without flag */
.mobile-input-wrapper.simple {
    display: flex;
    align-items: stretch;
}

.mobile-input-wrapper.simple .country-code {
    background: #f8fafc;
    border-right: 1px solid #d1d5db;
    padding: 15px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

/* Dropdown design for country code selection */
.mobile-input-wrapper.dropdown {
    display: flex;
    align-items: stretch;
}

.country-code-dropdown {
    background: #f8fafc;
    border: none;
    border-right: 1px solid #d1d5db;
    padding: 15px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    outline: none;
    min-width: 80px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    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='currentColor' 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 8px center;
    background-size: 12px;
    padding-right: 28px;
}

.country-code-dropdown:focus {
    background-color: #e2e8f0;
}

.country-code-dropdown:hover {
    background-color: #f1f5f9;
}

/* Error state */
.mobile-input-container.error .mobile-input-wrapper {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.mobile-input-container .error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-input-container .error-message i {
    font-size: 12px;
}

/* Success state */
.mobile-input-container.success .mobile-input-wrapper {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.mobile-input-container .success-message {
    color: #10b981;
    font-size: 12px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-input-container .success-message i {
    font-size: 12px;
}

/* Responsive Design for Mobile Input */
@media (max-width: 767px) {
    .mobile-input-wrapper {
        border-radius: 6px;
    }
    
    .country-code {
        padding: 12px 10px;
        font-size: 14px;
        min-width: 55px;
    }
    
    .country-code-dropdown {
        padding: 12px 24px 12px 10px;
        font-size: 14px;
        min-width: 70px;
        background-size: 10px;
        background-position: right 6px center;
    }
    
    .mobile-number-input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .country-flag {
        width: 18px;
        height: 13px;
    }
}

@media (max-width: 479px) {
    .country-code {
        padding: 11px 8px;
        font-size: 13px;
        min-width: 50px;
    }
    
    .country-code-dropdown {
        padding: 11px 22px 11px 8px;
        font-size: 13px;
        min-width: 65px;
        background-size: 9px;
        background-position: right 5px center;
    }
    
    .mobile-number-input {
        padding: 11px 12px;
        font-size: 13px;
    }
    
    .country-flag {
        width: 16px;
        height: 12px;
    }
}

@media (max-width: 374px) {
    .country-code {
        padding: 10px 6px;
        font-size: 12px;
        min-width: 45px;
    }
    
    .country-code-dropdown {
        padding: 10px 20px 10px 6px;
        font-size: 12px;
        min-width: 60px;
        background-size: 8px;
        background-position: right 4px center;
    }
    
    .mobile-number-input {
        padding: 10px 10px;
        font-size: 12px;
    }
    
    .mobile-label {
        font-size: 13px;
    }
}