/* Custom Styles for Login & Onboarding */

:root {
    --login-gradient: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 50%, #06b6d4 100%);
    --onboarding-gradient: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f3f4f6 100%);
    --primary-gradient: linear-gradient(to right, #0ea5e9, #06b6d4);
}

.login-body {
    background: var(--login-gradient);
}

.login-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    max-width: 450px;
    width: 100%;
}

.logo-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background-color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.logo-wrapper img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.tab-nav {
    background-color: #f3f4f6;
    border-radius: 0.75rem;
    padding: 0.25rem;
    display: flex;
}

.tab-nav .btn {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem;
    transition: all 0.2s;
    color: #6b7280;
}

.tab-nav .btn.active {
    background-color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    color: #111827;
}

.form-input {
    border-radius: 0.75rem !important;
    padding: 0.75rem 1rem !important;
    border: 1px solid #e5e7eb !important;
}

.form-input:focus {
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2) !important;
}

.btn-primary-gradient {
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
    padding: 0.75rem;
    transition: opacity 0.2s;
}

.btn-primary-gradient:hover {
    opacity: 0.9;
    color: white;
}

.btn-primary-gradient:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.onboarding-screen {
    background: var(--onboarding-gradient);
}

.onboarding-app {
    background-color: white;
    max-width: 1152px;
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #f3f4f6;
}

.left-panel {
    border-right: 1px solid #f3f4f6;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #ecfeff 100%);
    padding: 2rem;
    position: relative;
}

.right-panel {
    padding: 3rem;
}

.progress-dot {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.progress-dot.completed {
    background: var(--primary-gradient);
    color: white;
}

.progress-dot.active {
    border: 2px solid #0ea5e9;
    background: white;
    color: #0ea5e9;
}

.progress-dot.pending {
    border: 2px solid #d1d5db;
    background: white;
    color: #9ca3af;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
@keyframes rotate { from { transform: rotate(-180deg) scale(0); } to { transform: rotate(0) scale(1); } }

.animate-fadeIn { animation: fadeIn 0.4s ease-out; }
.animate-slideUp { animation: slideUp 0.3s ease-out; }
.animate-slideLeft { animation: slideLeft 0.3s ease-out; }
.animate-scaleIn { animation: scaleIn 0.3s ease-out; }
.animate-rotate { animation: rotate 0.3s ease-out; }

.hidden {
    display: none !important;
}

.fs-13 { font-size: 13px; }
.fs-11 { font-size: 11px; }
.fs-10 { font-size: 10px; }

.option-btn {
    position: relative;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
    padding: 1.5rem;
    background: white;
    transition: all 0.2s;
    text-align: center;
}

.option-btn.selected {
    border-color: #0ea5e9;
    background: linear-gradient(135deg, #f0f9ff, #ecfeff);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.option-btn:hover:not(.selected) {
    border-color: #d1d5db;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.template-card {
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    padding: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.template-card:hover {
    border-color: #38bdf8;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: scale(1.02) translateX(4px);
}

.feature-card {
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    padding: 1.25rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: #38bdf8;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05) translateY(-4px);
}
