/*==================================================
REGISTRATION SECTION
==================================================*/

.registration-section{

padding:80px 0;

background:#f4f7fc;

}

.registration-box{

background:#fff;

padding:50px;

border-radius:25px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

overflow:hidden;

}

/*=====================================
Heading
=====================================*/

.registration-box h2{

font-size:38px;

font-weight:700;

color:#213166;

margin-bottom:10px;

}

.registration-box p{

color:#666;

font-size:17px;

}

/*=====================================
Progress Bar
=====================================*/

.progress-wrapper{

display:flex;

justify-content:center;

align-items:center;

margin:45px 0;

}

.step{

display:flex;

flex-direction:column;

align-items:center;

position:relative;

z-index:2;

}

.circle{

width:55px;

height:55px;

border-radius:50%;

background:#d8d8d8;

display:flex;

justify-content:center;

align-items:center;

font-size:20px;

font-weight:700;

transition:.4s;

color:#555;

}

.step.active .circle{

background:#213166;

color:#fff;

box-shadow:0 10px 25px rgba(33,49,102,.35);

}

.step p{

margin-top:10px;

font-weight:600;

font-size:15px;

color:#666;

}

.step.active p{

color:#213166;

}

.line{

height:4px;

width:170px;

background:#ddd;

margin:0 15px;

margin-top:-25px;

position:relative;

overflow:hidden;

border-radius:10px;

}

.line::after{

content:"";

position:absolute;

left:0;

top:0;

height:100%;

width:0;

background:#213166;

transition:.5s;

}

.step.active + .line::after{

width:100%;

}

/*=====================================
Form Steps
=====================================*/

.form-step{

display:none;

animation:fadeSlide .5s ease;

}

.form-step.active{

display:block;

}

@keyframes fadeSlide{

from{

opacity:0;

transform:translateX(40px);

}

to{

opacity:1;

transform:translateX(0);

}

}

/*=====================================
Labels
=====================================*/

label{

font-weight:600;

margin-bottom:8px;

color:#213166;

}

/*=====================================
Inputs
=====================================*/

.form-control,

.form-select{

height:55px;

border-radius:14px;

border:1px solid #d9d9d9;

padding:10px 18px;

transition:.3s;

}

textarea.form-control{

height:130px;

resize:none;

}

.form-control:focus,

.form-select:focus{

border-color:#213166;

box-shadow:0 0 0 .2rem rgba(33,49,102,.15);

}

/*=====================================
Buttons
=====================================*/

.btn{

padding:12px 30px;

border-radius:50px;

font-weight:600;

transition:.3s;

}

.btn-primary{

background:#213166;

border:none;

}

.btn-primary:hover{

background:#17254d;

transform:translateY(-3px);

}

.btn-success{

background:#198754;

border:none;

}

.btn-success:hover{

transform:translateY(-3px);

}

.btn-secondary:hover{

transform:translateY(-3px);

}

/*=====================================
Payment Card
=====================================*/

.payment-card{

background:#fff;

border:2px solid #ececec;

border-radius:18px;

padding:18px 22px;

margin-bottom:18px;

cursor:pointer;

transition:.35s;

}

.payment-card:hover{

border-color:#213166;

transform:translateY(-5px);

box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.payment-card label{

display:flex;

justify-content:space-between;

align-items:center;

cursor:pointer;

width:100%;

margin:0;

font-weight:600;

}

.payment-card input{

margin-right:12px;

transform:scale(1.2);

}

.payment-card span{

font-size:22px;

font-weight:700;

color:#213166;

}

/*=====================================
Selected Payment
=====================================*/

.payment-card.active{

border-color:#213166;

background:#eef3ff;

}

/*=====================================
Amount Box
=====================================*/

.amount-box{

margin-top:30px;

padding:25px;

border-radius:18px;

background:#213166;

text-align:center;

color:#fff;

}

.amount-box h2{

font-size:38px;

font-weight:700;

margin-top:10px;

color:#FFC107;

}

/*=====================================
Scanner
=====================================*/

.scanner{

background:#fafafa;

border:2px dashed #d6d6d6;

border-radius:20px;

padding:25px;

text-align:center;

margin-bottom:30px;

}

.scanner img{

max-width:250px;

border-radius:15px;

margin-bottom:20px;

}

.scanner p{

margin-bottom:8px;

font-weight:600;

color:#666;

}

.scanner h5{

font-size:22px;

font-weight:700;

color:#213166;

}

/*=====================================
Responsive
=====================================*/

@media(max-width:992px){

.registration-box{

padding:35px;

}

.line{

width:90px;

}

}

@media(max-width:768px){

.registration-section{

padding:50px 15px;

}

.registration-box{

padding:25px;

}

.registration-box h2{

font-size:28px;

}

.progress-wrapper{

flex-direction:column;

gap:20px;

}

.line{

width:4px;

height:50px;

margin:0;

}

.line::after{

height:0;

width:100%;

}

.step.active + .line::after{

height:100%;

}

.btn{

width:100%;

margin-bottom:10px;

}

.d-flex.justify-content-between{

flex-direction:column;

}

.payment-card label{

flex-direction:column;

gap:10px;

}

}