/**
 * BankusCapital - Register Form Styles
 * Modern, Professional, Elegant Design
 * Version: 2.0
 */

:root {
    --primary-green: #065F28;
    --primary-green-light: #0FBF46;
    --primary-green-dark: #043A18;
    --accent-lime: #84D84E;
    --accent-emerald: #10B981;
    --secondary-blue: #4169E1;
    --text-dark: #0F172A;
    --text-medium: #334155;
    --text-gray: #64748B;
    --text-light: #94A3B8;
    --border-color: #E2E8F0;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    background: linear-gradient(160deg,
            #065F28 0%,
            #0A8F3C 35%,
            #0FBF46 70%,
            #84D84E 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(132, 216, 78, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 95, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.register-container {
    min-height: 100vh;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 2rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 45% 55%;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(20px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* LEFT SIDE - BRANDING */
.register-brand-side {
    background: linear-gradient(160deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.register-brand-side::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(132, 216, 78, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.register-header {
    position: relative;
    z-index: 1;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.brand-logo-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.brand-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.5px;
}

.brand-content {
    color: white;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #FFFFFF;
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.brand-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInLeft 0.8s ease;
}

.brand-feature:nth-child(1) {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.brand-feature:nth-child(2) {
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.brand-feature:nth-child(3) {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.feature-number {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* RIGHT SIDE - FORM */
.register-form-side {
    padding: 4rem 3.5rem;
    overflow-y: auto;
    max-height: 90vh;
}

.register-form-side::-webkit-scrollbar {
    width: 8px;
}

.register-form-side::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.register-form-side::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.form-header .subtitle {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Form Sections */
.form-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.section-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-label .required {
    color: var(--error-color);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 0.95rem 1.2rem;
    border: 2px solid #E2E8F0;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #FAFBFC;
    color: var(--text-dark);
    font-weight: 500;
}

/* Phone Input Wrapper */
.phone-input-wrapper {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0.75rem;
}

/* URL Input Wrapper */
.url-input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.url-prefix {
    position: absolute;
    left: 1rem;
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 1;
}

.url-domain-input {
    padding-left: 5.5rem !important;
    flex: 1;
}

.phone-code-select {
    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='%2364748B' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
    font-weight: 600;
}

.phone-number-input {
    flex: 1;
}

@media (max-width: 768px) {
    .phone-input-wrapper {
        grid-template-columns: 120px 1fr;
        gap: 0.5rem;
    }

    .url-prefix {
        font-size: 0.85rem;
        left: 0.75rem;
    }

    .url-domain-input {
        padding-left: 4.5rem !important;
    }
}

.form-control:hover {
    border-color: #CBD5E1;
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 5px rgba(6, 95, 40, 0.08),
        0 4px 16px rgba(6, 95, 40, 0.1);
    background: white;
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #B8C5D0;
    font-weight: 400;
}

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='%2364748B' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-control:disabled,
.form-control:read-only {
    background: #F8FAFC;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Info Boxes */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}

.info-box.warning {
    background: #FEF3C7;
    border-color: var(--warning-color);
    color: #92400E;
}

.info-box.info {
    background: #DBEAFE;
    border-color: var(--secondary-blue);
    color: #1E40AF;
}

.info-box-content {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Date and Address Grids */
.date-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

/* Password Toggle */
.password-toggle {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    padding: 0.25rem;
    color: var(--text-gray);
    transition: color 0.3s;
}

.password-toggle-btn:hover {
    color: var(--primary-green);
}

/* Checkbox */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #F8FAFC;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.checkbox-wrapper:hover {
    background: #F1F5F9;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-green);
    margin-top: 2px;
}

.checkbox-label {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.checkbox-label a:hover {
    color: var(--primary-green-light);
    text-decoration: underline;
}

/* Register Button */
.btn-register {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, #043A18 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(6, 95, 40, 0.35),
        0 4px 12px rgba(6, 95, 40, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.5px;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s;
}

.btn-register:hover::before {
    left: 100%;
}

.btn-register:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(6, 95, 40, 0.4),
        0 6px 16px rgba(6, 95, 40, 0.25);
}

.btn-register:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    font-weight: 400;
}

.btn-register:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-register:disabled {
    background: linear-gradient(135deg, #CBD5E1 0%, #94A3B8 100%);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Login Link */
.login-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    color: var(--text-gray);
    font-size: 0.95rem;
}

.login-link a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.login-link a:hover {
    color: var(--primary-green-light);
}

/* Alert */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: shake 0.5s;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

.alert-danger {
    background: #FEE2E2;
    border: 2px solid var(--error-color);
    color: #991B1B;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    position: relative;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    border-top-color: var(--primary-green-light);
    animation-duration: 0.8s;
    animation-direction: reverse;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
}

.spinner-ring:nth-child(3) {
    border-top-color: var(--secondary-blue);
    animation-duration: 1.2s;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.loading-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.loading-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.loading-subtext {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.loading-steps {
    margin-top: 2rem;
    text-align: left;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    background: white;
    transition: all 0.3s;
    opacity: 0.4;
}

.loading-step.active {
    opacity: 1;
    background: #F0FDF4;
    border-left: 3px solid var(--success-color);
}

.loading-step.completed {
    opacity: 0.7;
}

.step-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 600;
    transition: all 0.3s;
}

.loading-step.active .step-indicator {
    background: var(--primary-green);
    color: white;
    animation: bounce 1s infinite;
}

.loading-step.completed .step-indicator {
    background: var(--success-color);
    color: white;
}

.loading-step.completed .step-indicator::before {
    content: '✓';
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.step-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn-register:active {
        transform: scale(0.97);
        transition: transform 0.1s;
    }

    .form-control:focus {
        transform: none;
    }

    .checkbox-wrapper {
        min-height: 56px;
    }

    .password-toggle-btn {
        padding: 0.5rem;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* RESPONSIVE DESIGN */

/* Tablets */
@media (max-width: 1024px) {
    .register-wrapper {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 1.5rem;
    }

    .register-brand-side {
        padding: 3rem 2.5rem;
        min-height: 350px;
    }

    .brand-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .brand-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .brand-features {
        gap: 1.25rem;
    }

    .feature-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .register-form-side {
        padding: 3rem 2.5rem;
        max-height: none;
    }

    .form-header h2 {
        font-size: 1.75rem;
    }
}

/* Mobile Medium */
@media (max-width: 768px) {
    .register-wrapper {
        margin: 1rem;
        border-radius: 24px;
    }

    .register-brand-side {
        padding: 2.5rem 2rem;
        min-height: 300px;
    }

    .brand-logo-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }

    .brand-logo-text {
        font-size: 1.75rem;
    }

    .brand-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .brand-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .brand-features {
        gap: 1rem;
    }

    .brand-feature {
        padding: 1rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 0.85rem;
    }

    .register-form-side {
        padding: 2.5rem 2rem;
    }

    .form-header {
        margin-bottom: 2rem;
    }

    .form-header h2 {
        font-size: 1.6rem;
    }

    .form-header .subtitle {
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-control {
        padding: 1rem 1.1rem;
        font-size: 16px;
    }

    .address-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .date-grid {
        gap: 0.75rem;
    }

    .section-number {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .form-section-title {
        font-size: 1.25rem;
    }

    .form-section-header {
        margin-bottom: 1.5rem;
    }

    .info-box {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .btn-register {
        padding: 1.1rem 1.5rem;
        font-size: 1.05rem;
    }

    .login-link {
        font-size: 0.95rem;
        margin-top: 1.75rem;
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    body {
        background: linear-gradient(180deg,
                #065F28 0%,
                #0A8F3C 40%,
                #0FBF46 100%);
    }

    .register-container {
        padding: 0;
        align-items: flex-start;
    }

    .register-wrapper {
        margin: 0;
        border-radius: 0;
        max-width: 100%;
        min-height: 100vh;
    }

    .register-brand-side {
        padding: 2rem 1.5rem;
        min-height: 280px;
        border-radius: 0;
    }

    .brand-logo {
        margin-bottom: 2rem;
    }

    .brand-logo-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        border-radius: 16px;
    }

    .brand-logo-text {
        font-size: 1.5rem;
    }

    .brand-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .brand-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
        line-height: 1.6;
    }

    .brand-features {
        gap: 0.9rem;
    }

    .brand-feature {
        padding: 0.9rem;
    }

    .feature-number {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }

    .feature-title {
        font-size: 0.95rem;
    }

    .feature-desc {
        font-size: 0.8rem;
    }

    .register-form-side {
        padding: 2rem 1.5rem 3rem;
        border-radius: 0;
    }

    .form-header {
        margin-bottom: 1.75rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .form-header .subtitle {
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .form-control {
        padding: 0.95rem 1rem;
        font-size: 16px;
        border-radius: 12px;
    }

    .form-section-header {
        margin-bottom: 1.25rem;
        gap: 0.75rem;
    }

    .section-number {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .form-section-title {
        font-size: 1.15rem;
    }

    .info-box {
        padding: 0.85rem 1rem;
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        border-radius: 10px;
    }

    .checkbox-wrapper {
        padding: 0.9rem;
        margin: 1.25rem 0;
        border-radius: 10px;
    }

    .checkbox-label {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .btn-register {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 14px;
        margin-bottom: 0.5rem;
    }

    .btn-arrow {
        font-size: 1.3rem;
    }

    .login-link {
        font-size: 0.9rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .date-grid {
        gap: 0.6rem;
    }

    .address-grid {
        gap: 0.85rem;
    }

    .loading-content {
        padding: 1.5rem;
    }

    .loading-spinner {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .loading-icon {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }

    .loading-text {
        font-size: 1.15rem;
    }

    .loading-subtext {
        font-size: 0.9rem;
    }

    .loading-steps {
        margin-top: 1.5rem;
    }

    .loading-step {
        padding: 0.65rem;
        margin-bottom: 0.4rem;
    }

    .step-indicator {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    .step-text {
        font-size: 0.85rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 375px) {
    .register-brand-side {
        padding: 1.75rem 1.25rem;
    }

    .brand-title {
        font-size: 1.35rem;
    }

    .brand-subtitle {
        font-size: 0.85rem;
    }

    .register-form-side {
        padding: 1.75rem 1.25rem 2.5rem;
    }

    .form-header h2 {
        font-size: 1.35rem;
    }

    .form-control {
        padding: 0.9rem 0.95rem;
    }

    .btn-register {
        padding: 0.95rem 1.25rem;
        font-size: 0.95rem;
    }
}