/*
|--------------------------------------------------------------------------
| VALORABANK
| INSCRIPTION (KYC ONBOARDING) CSS
|--------------------------------------------------------------------------
*/

.inscription-hero{

    min-height:45vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(8,31,77,.90),
        rgba(8,31,77,.75)
    ),
    url('../images/auth/signup.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;

}

.inscription-hero h1{

    font-size:3rem;
    font-weight:800;

}

/* ==============================
FORM WRAPPER
============================== */

.inscription-section{

    padding:100px 0;

    background:#f8fafc;

}

.form-card{

    background:#fff;

    border-radius:30px;

    padding:40px;

    box-shadow:0 25px 80px rgba(0,0,0,.08);

}

/* ==============================
PROGRESS BAR
============================== */

.progress-bar-wrapper{

    height:8px;

    background:#e5e7eb;

    border-radius:50px;

    overflow:hidden;

    margin-bottom:30px;

}

.progress-bar-fill{

    height:100%;

    width:0%;

    background:linear-gradient(90deg,#FFD447,#103A8C);

    transition:0.4s ease;

}

/* ==============================
FORM ELEMENTS
============================== */

.step{

    display:none;

}

.step.active{

    display:block;

}

input, select{

    width:100%;

    padding:15px 18px;

    border-radius:15px;

    border:1px solid #e5e7eb;

    margin-bottom:20px;

    outline:none;

}

input:focus, select:focus{

    border-color:#103A8C;

    box-shadow:0 0 0 4px rgba(16,58,140,.1);

}

label{

    font-weight:600;

    margin-bottom:8px;

    display:block;

    color:#081F4D;

}

/* ==============================
BUTTONS
============================== */

.btn-next,
.btn-prev{

    padding:12px 30px;

    border-radius:50px;

    border:none;

    font-weight:700;

    cursor:pointer;

}

.btn-next{

    background:linear-gradient(135deg,#081F4D,#103A8C);

    color:#fff;

}

.btn-prev{

    background:#e5e7eb;

    color:#081F4D;

}

/* ==============================
UPLOAD
============================== */

.upload-box{

    border:2px dashed #cbd5e1;

    padding:30px;

    border-radius:20px;

    text-align:center;

    cursor:pointer;

    margin-bottom:20px;

    transition:.3s;

}

.upload-box:hover{

    border-color:#103A8C;

}

/* ==============================
RESPONSIVE
============================== */

@media(max-width:576px){

    .inscription-hero h1{

        font-size:2.2rem;

    }

}