
:root {
    --primary: #1e3a8a;
    --primary-dark: #162c6e;
    --primary-light: #2563eb;
    --primary-bg: #eff6ff;
    --accent-red: #c41c27;
    --red-hover: #a8151f;
    --success: #16a34a;
    --error: #dc2626;
    --dark: #1e2a4a;
    --light: #f8faff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gradient-primary: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    --gradient-accent: linear-gradient(135deg, var(--accent-red), #e53e3e);
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(30,58,138,0.1), 0 2px 4px -1px rgba(30,58,138,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(30,58,138,0.1), 0 4px 6px -2px rgba(30,58,138,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(30,58,138,0.12), 0 10px 10px -5px rgba(30,58,138,0.06);
    --border-radius: 12px;
    --border-radius-lg: 18px;
}

.create-account-container {
    max-width: 2000px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
}

.page-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 1.5rem 0;
}

.header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: var(--accent-red);
}

.breadcrumb-current {
    color: var(--gray-600);
    font-weight: 600;
}

.page-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: var(--shadow-lg);
}

.page-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.floating-icons {
    display: flex;
    gap: 2rem;
    font-size: 3rem;
    color: var(--primary-bg);
}

.floating-icons i {
    animation: float 6s ease-in-out infinite;
}

.floating-icons i:nth-child(2) { animation-delay: -2s; }
.floating-icons i:nth-child(3) { animation-delay: -4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.form-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: start;
}

.form-container {
    max-width: 1000px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    text-align: center;
}

.step.active .step-label {
    color: var(--primary);
}

.step-connector {
    width: 70px;
    height: 2px;
    background: var(--gray-200);
    margin: 0 1rem;
}

.form-card {
    background: white;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--gray-500);
    font-size: 0.95rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
}

.form-label i {
    color: var(--primary-light);
    width: 16px;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background: var(--gray-50);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.input-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
    font-size: 0.82rem;
    color: var(--gray-500);
}

.input-hint i {
    color: var(--primary-light);
}

.error-message {
    color: var(--error);
    font-size: 0.82rem;
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s ease;
    min-width: unset;
}

.password-toggle:hover {
    color: var(--primary);
    background: none;
    transform: translateY(-50%);
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-500);
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.radio-label {
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.checkbox-label {
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.5;
    cursor: pointer;
}

.terms-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.form-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.login-link {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.link-primary {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease;
}

.link-primary:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

.help-section {
    position: sticky;
    width: auto;
    top: 2rem;
}

.help-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    max-width: 300px;
}

.help-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-md);
}

.help-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.help-text {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.help-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.help-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

@media (max-width: 1024px) {
    .form-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .help-section {
        position: static;
        order: -1;
        width: 100%;
        max-width: 800px;
    }

    .help-card {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .create-account-container {
        padding: 1rem;
    }

    .form-card {
        padding: 1.5rem;
    }

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