﻿:root {
    --sf-primary-blue: #009EDB;
    --sf-primary-blue-dark: #007DC5;
    --sf-primary-orange: #FDB913;
    --sf-primary-orange-dark: #F7941D;
}


.logo-image {
    object-fit: contain;
    transition: transform 0.3s ease;
}

    .logo-image:hover {
        transform: scale(1.03);
    }

@media (max-width: 768px) {
    .logo-image {
        width: 150px !important;
    }
}

@media (max-width: 576px) {
    .logo-image {
        width: 120px !important;
    }
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.feature-card {
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .feature-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    }

.tip-card {
    border-left: 3px solid #0d6efd;
}

.text-orange-500 {
    color: #fd7e14;
}

.bg-primary-50 {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Animation Classes */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.floating-anim {
    animation: float 4s ease-in-out infinite;
}

.bounce-anim {
    animation: bounce 3s ease-in-out infinite;
}

.slide-up-anim {
    animation: slideUp 0.6s ease-out forwards;
}

.pop-in-anim {
    animation: popIn 0.4s ease-out forwards;
}

.hover-grow {
    transition: transform 0.2s ease;
}

    .hover-grow:hover {
        transform: scale(1.05);
    }

/* UI Enhancements */
.icon-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-orange-50 {
    background-color: rgba(253, 126, 20, 0.1);
}

.feature-card {
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
    }

.tip-card {
    border-left: 3px solid #0d6efd;
    transition: transform 0.2s ease;
}

    .tip-card:hover {
        transform: translateX(4px);
    }

/* Performance Optimization */
.right-content {
    will-change: transform, opacity;
}

img {
    will-change: transform;
}

/* Base styles */
:root {
    --primary-blue: #0d6efd;
    --secondary-blue: #6c9fff;
    --primary-orange: #fd7e14;
    --secondary-orange: #ffa94d;
    --light-blue: #e7f1ff;
    --light-orange: #fff3e6;
}

/* Common Styles */
.auth {
    min-height: 100vh;
}

.auth-left {
    background-color: #f8f9fa;
    padding: 2rem;
}

.auth-right {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    min-height: 100vh;
}

/* Background Patterns */
.bg-pattern-1 {
    background: linear-gradient(135deg, #0d6efd 0%, #6c9fff 50%, #e7f1ff 100%);
}

.bg-pattern-2 {
    background: linear-gradient(135deg, #fd7e14 0%, #ffa94d 50%, #fff3e6 100%);
}

.bg-pattern-3 {
    background: linear-gradient(135deg, #0d6efd 0%, #fd7e14 50%, #6c9fff 100%);
}

.bg-pattern-4 {
    background: linear-gradient(135deg, #32d74b 0%, #0d6efd 50%, #fd7e14 100%);
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Content Container */
.content-container {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

#step1 .auth-right {
    background: linear-gradient(315deg, #0d6efd 0%, #6c9fff 50%, #e7f1ff 100%);
}

/* 3D Icon Container */
.icon-3d {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    transform-style: preserve-3d;
}

    .icon-3d::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(45deg, var(--primary-blue), var(--primary-orange));
        border-radius: 50%;
        opacity: 0.2;
        filter: blur(20px);
        animation: gentleGlow 3s ease-in-out infinite;
    }

    .icon-3d iconify-icon {
        font-size: 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 120px;
        position: relative;
        z-index: 2;
        animation: iconGlow 2.5s ease-in-out infinite;
    }

@keyframes gentleGlow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
        filter: blur(20px);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.05);
        filter: blur(15px);
    }
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px currentColor);
        opacity: 1;
    }

    50% {
        filter: drop-shadow(0 0 16px currentColor);
        opacity: 0.9;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        transform: translateX(5px);
    }

    .feature-item:last-child {
        margin-bottom: 0;
    }

.icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

    .icon-badge:hover {
        transform: scale(1.1) rotate(5deg);
    }

/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

/* Step-specific styling */
.step-0 .icon-3d iconify-icon {
    color: var(--secondary-blue);
}

.step-0 .icon-3d::before {
    background: linear-gradient(45deg, var(--secondary-blue), var(--light-blue));
}

.step-0 .icon-badge {
    background: var(--light-blue);
    color: var(--secondary-blue);
}

.step-1 .icon-3d iconify-icon {
    color: var(--primary-blue);
}

.step-1 .icon-3d::before {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
}

.step-1 .icon-badge {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.step-2 .icon-3d iconify-icon {
    color: var(--primary-orange);
}

.step-2 .icon-3d::before {
    background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
}

.step-2 .icon-badge {
    background: var(--light-orange);
    color: var(--primary-orange);
}

.step-3 .icon-3d iconify-icon {
    color: var(--primary-blue);
}

.step-3 .icon-3d::before {
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-orange));
}

.step-3 .icon-badge {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.step-4 .icon-3d iconify-icon {
    color: #32d74b;
}

.step-4 .icon-3d::before {
    background: linear-gradient(45deg, #32d74b, var(--primary-blue));
}

.step-4 .icon-badge {
    background: #e6f7e6;
    color: #32d74b;
}

/* Info Card */
.info-card {
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Button Styles */
.btn-3d {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-3d .btn-3d-col {
    }

    .btn-3d:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
        color: white;
    }

    .btn-3d::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-3d:hover::before {
        left: 100%;
    }

/* Responsive fixes */
@media (max-width: 991.98px) {
    .auth-left {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .auth-right {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
}

@media (min-width: 992px) {
    .auth-left {
        width: 50% !important;
        flex: 0 0 50% !important;
    }

    .auth-right {
        width: 50% !important;
        flex: 0 0 50% !important;
    }
}

.max-w-464-px {
    max-width: 464px;
}


.btn-primary-600 {
    position: relative;
    overflow: hidden;
    background: var(--sf-primary-blue);
    border: none;
    transition: all 0.3s ease;
    z-index: 1;
}

    .btn-primary-600.disabled {
        background: var(--sf-primary-blue);
        cursor: not-allowed;
        opacity: 0.6;
        pointer-events: none;
        color: #1E1E1E; /* Default fallback text color */
    }

    .btn-primary-600::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: var(--sf-primary-blue);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .btn-primary-600:hover {
        transform: translateY(-1px);
        background: var(--sf-primary-blue-dark);
    }

.form-wizard-list__item.active .count {
    color: var(--sf-primary-blue);
    border-color: var(--sf-primary-blue);
    font-weight: 700;
}

.form-wizard-list__item.active .text {
    color: var(--sf-primary-blue);
}

.form-wizard-list__item.activated .count {
    background-color: var(--sf-primary-blue);
    border-color: var(--sf-primary-blue);
    color: #fff;
}

.form-wizard-list__item.activated .text {
    color: var(--sf-primary-blue);
}