* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #10b981;
    --secondary: #059669;
    --accent: #34d399;
    --dark: #1e293b;
    --light: #f0fdf4;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #34d399 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow-x: hidden;
}

/* ===============================
   🐾 Paw Pattern Background
   =============================== */
.paw-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.paw {
    position: absolute;
    font-size: 2.5rem;
    color: rgb(255 255 255 / 70%);
    opacity: 0.15;
    animation: pawFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.paw:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.paw:nth-child(2) { top: 15%; left: 30%; animation-delay: 1s; animation-duration: 9s; }
.paw:nth-child(3) { top: 25%; left: 50%; animation-delay: 2s; animation-duration: 8s; }
.paw:nth-child(4) { top: 20%; left: 70%; animation-delay: 3s; animation-duration: 10s; }
.paw:nth-child(5) { top: 30%; left: 85%; animation-delay: 4s; animation-duration: 7.5s; }
.paw:nth-child(6) { top: 45%; left: 15%; animation-delay: 0.5s; animation-duration: 8.5s; }
.paw:nth-child(7) { top: 50%; left: 40%; animation-delay: 1.5s; animation-duration: 9.5s; }
.paw:nth-child(8) { top: 55%; left: 65%; animation-delay: 2.5s; animation-duration: 7s; }
.paw:nth-child(9) { top: 60%; left: 90%; animation-delay: 3.5s; animation-duration: 8s; }
.paw:nth-child(10) { top: 70%; left: 25%; animation-delay: 4.5s; animation-duration: 9s; }
.paw:nth-child(11) { top: 75%; left: 55%; animation-delay: 0.8s; animation-duration: 10s; }
.paw:nth-child(12) { top: 80%; left: 80%; animation-delay: 1.8s; animation-duration: 7.5s; }
.paw:nth-child(13) { top: 35%; left: 5%; animation-delay: 2.8s; animation-duration: 8.5s; }
.paw:nth-child(14) { top: 40%; left: 95%; animation-delay: 3.8s; animation-duration: 9.5s; }
.paw:nth-child(15) { top: 65%; left: 8%; animation-delay: 4.8s; animation-duration: 8s; }
.paw:nth-child(16) { top: 85%; left: 45%; animation-delay: 1.3s; animation-duration: 7s; }

@keyframes pawFloat {
    0%, 100% { 
        opacity: 0.1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.25;
        transform: translateY(-20px) scale(1.1) rotate(10deg);
    }
    50% { 
        opacity: 0.3;
        transform: translateY(-10px) scale(1.15) rotate(-10deg);
    }
    75% {
        opacity: 0.2;
        transform: translateY(-15px) scale(1.05) rotate(5deg);
    }
}

/* ===============================
   📦 Container
   =============================== */
.register-container {
    background: white;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* ===============================
   🎨 Header
   =============================== */
.register-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 2.5rem;
    text-align: center;
    color: white;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.logo i {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.register-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===============================
   📊 Progress Bar
   =============================== */
.progress-container {
    padding: 2rem 0 1rem;
    background: #f8fafc;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 1rem;
    padding: 0 2.5rem;
}

/* Çizgi tüm genişlikte - padding hariç */
.progress-line {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
}

.progress-line-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 2px;
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Kurye için gizli step'leri gizle */
.progress-step.driver-only {
    display: none;
}

/* Müşteri Modu - Adımları ortala */
.progress-container.customer-mode .progress-steps {
    justify-content: center;
    gap: 8rem;
}

/* Progress line her zaman tam genişlikte */
.progress-container.customer-mode .progress-line {
    left: 0;
    right: 0;
    width: 100%;
}

/* Sürücü Modu - Normal görünüm */
.progress-container.driver-mode .progress-steps {
    justify-content: space-between;
    gap: 0;
}

.progress-container.driver-mode .progress-line {
    left: 0;
    right: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.progress-container.driver-mode .progress-step.driver-only {
    display: flex;
}

.step-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 4px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #94a3b8;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.progress-step.completed .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.step-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-align: center;
}

.progress-step.active .step-label {
    color: var(--primary);
}

/* ===============================
   📝 Form Content
   =============================== */
.form-content {
    padding: 2.5rem;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.step-description {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* ===============================
   👤 User Type Selection
   =============================== */
.user-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.user-type-card {
    padding: 1rem 1rem;
    border: 3px solid #e2e8f0;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.user-type-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.user-type-card.selected {
    background: linear-gradient(135deg, var(--light), white);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.user-type-icon {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.Lord-Icon {
    height: 50px;
    width: 50px;
}

.user-type-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.user-type-description {
    font-size: 0.9rem;
    color: #64748b;
}

/* ===============================
   📋 Form Groups
   =============================== */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-label i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* ===============================
   🔒 Password Input
   =============================== */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .form-input {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.password-toggle:hover {
    color: var(--primary);
}

/* Password Match Indicator */
.password-match-indicator {
    display: none;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    align-items: center;
    gap: 0.5rem;
}

.password-match-indicator.show {
    display: flex;
}

.password-match-indicator.match {
    background: #d1fae5;
    color: #059669;
}

.password-match-indicator.no-match {
    background: #fee2e2;
    color: #dc2626;
}

.password-match-indicator i {
    font-size: 1rem;
}


/* ===============================
   📧 Email Suggestions
   =============================== */
.suggestions {
    position: absolute;
    list-style: none;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 15px;
    margin-top: 5px;
    width: 100%;
    padding: 0;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
    display: none;
    max-height: 250px;
    overflow-y: auto;
    left: 0;
    top: 100%;
}

.suggestions::-webkit-scrollbar {
    width: 6px;
}

.suggestions::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.suggestions li {
    padding: 12px 16px;
    cursor: pointer;
    color: var(--dark);
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.suggestions li:last-child {
    border-bottom: none;
}

.suggestions li:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.suggestions li:first-child {
    border-radius: 13px 13px 0 0;
}

.suggestions li:last-child {
    border-radius: 0 0 13px 13px;
}

/* ===============================
   📐 Form Row
   =============================== */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* ===============================
   📤 File Upload Styles
   =============================== */
.upload-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 2px dashed #e2e8f0;
}

.upload-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upload-section-title i {
    color: var(--primary);
}

.upload-label {
    cursor: pointer;
    display: block;
}

.file-input {
    display: none;
}

.upload-box {
    background: white;
    border: 2px dashed #cbd5e1;
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.upload-box:hover {
    border-color: var(--primary);
    background: var(--light);
}

.upload-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.upload-box span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.upload-box small {
    color: #64748b;
    font-size: 0.85rem;
}

.upload-box-large {
    padding: 3rem 2rem;
}

.upload-success {
    display: none;
    background: linear-gradient(135deg, var(--light), white);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.upload-success i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.upload-success span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.upload-success small {
    color: #64748b;
    font-size: 0.85rem;
}

.image-preview,
.file-preview {
    display: none;
    margin-top: 1rem;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.image-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.pdf-preview {
    background: white;
    padding: 1.5rem;
    border-radius: 13px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pdf-preview i {
    font-size: 3rem;
    color: #ef4444;
}

.pdf-preview span {
    font-weight: 600;
    color: var(--dark);
}

.pdf-preview small {
    color: #64748b;
}

/* ===============================
   📷 Camera Styles
   =============================== */
.camera-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
}

.camera-preview {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: #1e293b;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Face ID Overlay */
.face-id-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 5;
    pointer-events: none;
    display: none;
}

.face-id-default,
.face-id-checked,
.face-id-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    stroke: #10b981;
    fill: #10b981;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.face-id-default {
    stroke: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

/* Scanning Animation */
.face-id-wrapper.animate-scan .face-id-default {
    animation: scanPulse 2s ease-in-out;
}

@keyframes scanPulse {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
}

.face-id-wrapper.animate-scan::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: scanLine 2s ease-in-out;
    box-shadow: 0 0 10px #10b981;
}

@keyframes scanLine {
    0% { 
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% { 
        top: 100%;
        opacity: 0;
    }
}

/* Success State */
.face-id-wrapper.scan-success .face-id-default {
    opacity: 0;
}

.face-id-wrapper.scan-success .face-id-checked {
    opacity: 1;
    stroke: #10b981;
    fill: #10b981;
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% { 
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Error State */
.face-id-wrapper.scan-error .face-id-default {
    opacity: 0;
}

.face-id-wrapper.scan-error .face-id-error {
    opacity: 1;
    fill: #ef4444;
    stroke: #ef4444;
    animation: errorShake 0.5s ease-out;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.camera-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.camera-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: none;
    z-index: 10;
}

@keyframes cameraFlash {
    0% { opacity: 0; }
    50% { opacity: 0.8; }
    100% { opacity: 0; }
}

#cameraVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camera-captured {
    width: 100%;
    height: 100%;
}

.camera-captured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camera-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-camera,
.btn-camera-retry {
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-camera {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-camera:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-camera-retry {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-camera-retry:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.camera-info {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.camera-info i {
    color: var(--primary);
}

/* ===============================
   📄 Contract Box
   =============================== */
.contract-box {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #475569;
}

.contract-box::-webkit-scrollbar {
    width: 8px;
}

.contract-box::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.contract-box h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contract-box p {
    margin-bottom: 1rem;
}

/* ===============================
   ✅ Checkbox
   =============================== */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.checkbox-group:hover {
    background: #d1fae5;
}

.checkbox-group input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.6;
    cursor: pointer;
}

/* ===============================
   🔘 Buttons
   =============================== */
.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    flex: 1;
    padding: 1.2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-back {
    background: #f1f5f9;
    color: var(--dark);
}

.btn-back:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ===============================
   ➗ Divider
   =============================== */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* ===============================
   🔗 Register Link
   =============================== */
.register-link {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
}

.register-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.register-link a:hover {
    color: var(--secondary);
}

/* ===============================
   🎯 Driver Only Steps Visibility
   =============================== */
.driver-only-step {
    display: none;
}

/* ===============================
   📱 Mobile Responsive - Tablet (768px ve altı)
   =============================== */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .register-header {
        padding: 2rem 1.5rem;
    }

    .logo {
        font-size: 2rem;
    }

    .progress-container {
        padding: 1.5rem 0 1rem;
    }

    .progress-steps {
        padding: 0 1.5rem;
    }

    .progress-line {
        left: 0;
        right: 0;
        top: 14px;
    }

    /* Müşteri modu mobilde */
    .progress-container.customer-mode .progress-steps {
        justify-content: center;
        gap: 8rem;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .form-content {
        padding: 1.5rem;
    }

    .user-type-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-buttons {
        flex-direction: column-reverse;
    }

    .step-title {
        font-size: 1.4rem;
    }

    .upload-section {
        padding: 1rem;
    }

    .upload-box {
        padding: 1.5rem 1rem;
    }

    .upload-box i {
        font-size: 1.5rem;
    }

    .camera-preview {
        max-width: 100%;
    }

    .btn-camera,
    .btn-camera-retry {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .camera-controls {
        flex-direction: column;
    }
}

/* ===============================
   📱 Mobile Responsive - Küçük Ekranlar (480px ve altı)
   =============================== */
@media (max-width: 480px) {
    .register-container {
        border-radius: 20px;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .progress-step {
        gap: 0.3rem;
    }

    .progress-steps {
        padding: 0 1rem;
    }

    .progress-line {
        left: 0;
        right: 0;
        top: 12px;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .register-subtitle {
        font-size: 1rem;
    }

    .form-input,
    .form-select {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .btn {
        padding: 1rem;
        font-size: 1rem;
    }
}