
/* Alerts */
#alertBox{
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  width: 100%;
}
.alert {
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
}
.alert button{ 
position: absolute;
right: 10px;
font-weight: 700;
font-size: 20px;
background: #00000000;
border: none;
color: #aaaaaa;

}
.alert button:hover{
  transform: scale(1.3);
  transition: 1s;
}
.alert-success {
  background: rgba(37, 143, 122, 0.411);
  color: var(--success);
  border-left: 4px solid var(--success);
}

.alert-danger {
  background: rgba(141, 30, 30, 0.445);
  color: var(--danger);
  border-left: 4px solid var(--danger);
}

/* Auth Container */
        .auth-container {
            position: relative;
            height: fit-content;
            align-self: center;
            width: fit-content;
            margin-top: 10px;
            max-width: 95%;
            display: flex;
            justify-content: center;
            backdrop-filter: blur(4px);
            z-index: 9;
        }

        
        .auth-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://example.com/crypto-pattern.png');
            opacity: 0.03;
            z-index: 0;
        }
        
        .auth-card {
            background-color: #00000000;
            border-radius: 15px;
            padding: 3rem;
            width: 100%;
            max-width: 500px;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            align-self: center;
        }
        .auth-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            z-index: -1;
            /* background: linear-gradient(45deg, var(--primary), #00ff88, #00ffb3, var(--primary)); */
            background-size: 400%;
            border-radius: 16px;
            opacity: 0;
            transition: 0.5s;
        }
        
        .auth-card:hover::before {
            opacity: 0.4;
            animation: animate 3s linear infinite;
        }
        
        @keyframes animate {
            0% { background-position: 0 0; }
            50% { background-position: 400% 0; }
            100% { background-position: 0 0; }
        }
        .auth-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        .auth-header h1 {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(to right, var(--primary), var(--secondary1));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .auth-header p {
            color: var(--text-muted);
        }
        
        .auth-form .form-group {
            margin-bottom: 1.5rem;
        }
       
        
        .auth-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .auth-form input {
            width: 100%;
            padding: 0.8rem 1.7rem;
            border-radius: 0px;
            border: 1px solid #00000000;
            background-color: #1a1a1a00;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
            outline: none;
            align-self: center;
        }
        
        .auth-form .input-icon-group:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-glow);
        }
         .input-icon-group{
            position: relative;
            display: flex;
            flex-direction: row;
            border-radius: 8px;
            border: 1px solid #333;
            background-color: #1a1a1a;
            width: 100%;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
         .input-icon-group i{
             align-self: center;
             margin-inline: 5px;
             position: absolute;
             left: 5px;
         }
         .input-icon-group span{
             align-self: center;
             margin-inline: 5px;
             
         }
          .input-icon-group span i{
             position: relative;
             
         }
         #terms{
            padding: 0px;
            width: fit-content;
            margin-inline: 5px;
         }
        .forgot-password {
            display: block;
            text-align: right;
            margin-top: 0.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .forgot-password:hover {
            color: var(--primary);
        }
        .form-buttons{
            display: flex;
            flex-direction: row;
            gap: 10px;
        }
        .btn {
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary-fade);
            transform: translateY(-2px);
        }
        

        .btn-primary {
            
            border: none;
            width: 100%;
            padding: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 1rem;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            /* box-shadow: 0 5px 15px var(--primary-glow); */
        }
        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
            width: 100%;
            padding: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 1rem;
        }
        
        .btn-secondary:hover {
            background: rgba(0, 255, 136, 0.1);
            transform: translateY(-2px);
        }
        .divider {
            display: flex;
            align-items: center;
            margin: 2rem 0;
            color: var(--text-muted);
        }
        
        .divider::before, .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #333;
        }
        
        .divider::before {
            margin-right: 1rem;
        }
        
        .divider::after {
            margin-left: 1rem;
        }
        
        .google-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            width: 100%;
            padding: 0.8rem;
            border-radius: 8px;
            background-color: #1a1a1a;
            color: var(--text-light);
            border: 1px solid #333;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .google-btn:hover {
            background-color: #222;
            border-color: var(--primary);
        }
        
        .google-btn img {
            width: 20px;
            height: 20px;
        }
        
        .auth-footer {
            text-align: center;
            margin-top: 2rem;
            color: var(--text-muted);
        }
        
        .auth-footer a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }




        /* Progress Steps */
        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .progress-steps::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #333;
            z-index: 0;
            transform: translateY(-50%);
        }
        
        .progress-bar {
            position: absolute;
            top: 50%;
            left: 0;
            height: 2px;
            background-color: var(--primary);
            z-index: 1;
            transform: translateY(-50%);
            transition: width 0.3s ease;
        }
        
        .step {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #1a1a1a;
            border: 2px solid #333;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--text-muted);
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .step.active {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .step.completed {
            background-color: var(--primary);
            border-color: var(--primary);
            color: var(--dark);
        }
        
        .step-label {
            position: absolute;
            top: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8rem;
            color: var(--text-muted);
            white-space: nowrap;
        }
        
        .step.active .step-label,
        .step.completed .step-label {
            color: var(--primary);
        }
        
        /* Form Steps */
        .form-step {
            display: none;
        }
        
        .form-step.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .auth-form .form-group {
            margin-bottom: 1.5rem;
        }
        
        .auth-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
         .auth-form select {
            width: 100%;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            border: 1px solid #33333300;
            background-color: #1a1a1a00;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
         .auth-form select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-glow);
        }
        
        .name-fields {
            display: flex;
            gap: 1rem;
        }
        
        .name-fields .form-group {
            flex: 1;
        }
        
        .password-strength {
            margin-top: 0.5rem;
            height: 4px;
            background-color: #333;
            border-radius: 2px;
            overflow: hidden;
        }
        
        .password-strength-bar {
            height: 100%;
            width: 0;
            background-color: #ff0000;
            transition: width 0.3s ease, background-color 0.3s ease;
        }
        
        .password-hint {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }

        .plan-options {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .plan-option {
            background-color: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .plan-option:hover {
            border-color: var(--primary);
        }
        
        .plan-option.selected {
            border-color: var(--primary);
            background-color: rgba(255, 215, 0, 0.05);
            box-shadow: 0 0 0 2px var(--primary-glow);
        }
        
        .plan-option h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            display: flex;
            justify-content: space-between;
        }
        
        .plan-option .price {
            color: var(--primary);
        }
        
        .plan-option p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
         /* Responsive */
        @media (max-width: 768px) {
            .auth-card {
                padding: 2rem;
            }
            
            .auth-header h1 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .auth-card {
                padding: 1.5rem;
            }
            
            .auth-header h1 {
                font-size: 1.6rem;
            }
        }
/* Responsive */
@media (max-width: 992px) {
  
  
  .auth-illustration {
    display: none;
  }
}

.neon-glow span.row{
  display: block;
}
.neon-glow span.username{
  display: none;
}


body{
    display: flex;
    flex-direction: column;
}

.register{
        display: flex;
    }
    .neon-glow span, .navTog, nav.bottom{
        display: none;
    }
    .loaderBtn{
    display: flex;
    justify-content: center;
    place-items: center;

}

.loaderBtn .loader{
    padding: 5px;
    height: 20px;
    display: flex;
    gap: 5px;
    background: #000000;
    border-radius: 20px;
    place-items: center;

}
.loaderBtn .loader span{
    background: var(--primary);
    height: 15px;
    padding-inline: 2px;
    border-radius: 20px;
}
@keyframes loader {
    0%{
        height: 5px; 
    }
    100%{
        height: 15px;
    }
}