.gp-clf-login-box{
    max-width:520px;
    margin:20px auto;
    background:#fff;
    border:1px solid rgba(0,0,0,.12);
    border-radius:16px;
    padding:18px;
    text-align:center;
}
.gp-clf-login-box h3{
    margin:0 0 8px;
    font-size:20px;
    font-weight:900;
}
.gp-clf-login-box p{
    margin:0 0 14px;
    opacity:.8;
}
.gp-clf-login-box a{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:12px 18px;
    border-radius:12px;
    text-decoration:none;
    font-weight:900;
}

.gp-clf-wrap{
    max-width:760px;
    margin:auto;
    background:#fff;
    padding:24px;
    border-radius:20px;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    font-family:Arial,sans-serif;
}
.gp-clf-progress{
    width:100%;
    height:8px;
    background:#eee;
    border-radius:999px;
    overflow:hidden;
    margin-bottom:30px;
}
.gp-clf-progress-bar{
    width:33.33%;
    height:100%;
    background:#ff7a00;
    transition:.3s;
}
.gp-clf-title{
    margin:0 0 24px;
    font-size:26px;
    font-weight:900;
    text-align:center;
}
.gp-clf-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}
.gp-clf-field{
    display:flex;
    flex-direction:column;
}
.gp-clf-full{
    grid-column:1/-1;
}
.gp-clf-field label{
    margin-bottom:8px;
    font-weight:800;
}
.gp-clf-field input,
.gp-clf-field select{
    padding:14px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    width:100%;
    box-sizing:border-box;
    background:#fff;
}
.gp-clf-actions{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin-top:28px;
}
.gp-clf-btn{
    border:none;
    background:#ff7a00;
    color:#fff;
    padding:14px 24px;
    border-radius:12px;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    flex:1;
}
.gp-clf-btn[disabled]{
    opacity:.65;
    cursor:progress;
}
.gp-clf-secondary{
    background:#ddd;
    color:#222;
}
.gp-clf-step{
    display:none;
}
.gp-clf-step.is-active{
    display:block;
}
.gp-clf-note,
.gp-clf-user-box{
    margin-top:18px;
    padding:16px;
    border-radius:12px;
    line-height:1.6;
}
.gp-clf-note{
    background:#fff5eb;
    color:#cc6a00;
    text-align:center;
    font-weight:800;
}
.gp-clf-user-box{
    background:#f7f7f7;
    font-size:14px;
}
.gp-clf-response{
    margin-top:14px;
    font-weight:800;
    text-align:center;
}
.gp-clf-response.is-error{
    color:#d93025;
}
.gp-clf-response.is-success{
    color:#188038;
}
@media(max-width:768px){
    .gp-clf-grid{
        grid-template-columns:1fr;
    }
    .gp-clf-wrap{
        padding:18px;
    }
    .gp-clf-title{
        font-size:22px;
    }
}
