
/*  
  --------------------------------------------------------------
  -----      Import 'Inter' font and apply it to body      -----
  --------------------------------------------------------------
*/

@import url('./font/inter.css');

body {
    font-family: 'Inter var', sans-serif;
    font-feature-settings: "cv02","cv03","cv04","cv11";
}



/*  
  ---------------------------------------------------------------
  -----      Login card animation and shrinking it out      -----
  ---------------------------------------------------------------
*/

.login-card {
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Bouncy transition */
}

.login-card.shrink-out {
    opacity: 0;
    transform: scale(0.05) translate(0, 0); /* Shrinks to almost nothing */
}




/*  
  ---------------------------------------------
  -----      Registration page style      -----
  ---------------------------------------------
*/

input::placeholder, textarea::placeholder {
  color: var(--bs-tertiary-color) !important;
  opacity: .5 !important;
}


.glass-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.plan-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
    z-index: 0;
}

.progress-fill {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #9333ea, #c084fc);
    transform: translateY(-50%);
    z-index: 1;
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px #9333ea;
}

.step-indicator {
    position: relative;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1e293b;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.step-indicator.active {
    border-color: #9333ea;
    background: #9333ea;
    color: #fff;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.5);
    transform: scale(1.2);
}

.step-indicator.completed {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

/* Wizard Steps */
.wizard-step {
    display: none;
    padding: 2rem;
    animation: fadeIn 0.5s ease forwards;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


