#zpcrm-signup-app{
    max-width:1100px;
    margin:40px auto;
    font-family:Arial,sans-serif;
}

.zpcrm-progress{
    display:flex;
    justify-content:space-between;
    margin-bottom:50px;
}

.zpcrm-step{
    flex:1;
    text-align:center;
    opacity:.4;
    position:relative;
}

.zpcrm-step.active{
    opacity:1;
}

.zpcrm-step .circle{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#e7e2ff;
    color:#5b3df5;
    margin:0 auto 10px;
    line-height:45px;
    font-weight:bold;
}

.zpcrm-step.active .circle{
    background:#5b3df5;
    color:#fff;
}

.zpcrm-form-step{
    display:none;
    background:#fff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.zpcrm-form-step.active{
    display:block;
}

.zpcrm-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.zpcrm-field.full{
    grid-column:1/-1;
}

.zpcrm-field label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.zpcrm-field input,
.zpcrm-field textarea,
.zpcrm-field select{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
}

.zpcrm-contract-box,
.zpcrm-summary-box{
    background:#f7f7ff;
    padding:20px;
    border-radius:12px;
    margin:20px 0;
}

.zpcrm-nav{
    margin-top:30px;
    display:flex;
    justify-content:space-between;
}

.zpcrm-nav button{
    padding:14px 28px;
    border:none;
    border-radius:30px;
    cursor:pointer;
    font-size:16px;
    background:#5b3df5;
    color:#fff;
}

/*
|--------------------------------------------------------------------------
| Select Dropdown Styling
|--------------------------------------------------------------------------
*/

.zpcrm-field select {
    
    width: 100%;
    
    height: 58px;
    
    padding: 0 55px 0 18px;
    
    border: 1px solid #d9d9e3;
    
    border-radius: 14px;
    
    background-color: #ffffff;
    
    color: #1f1f1f;
    
    font-size: 16px;
    
    font-weight: 500;
    
    line-height: 1.4;
    
    appearance: none;
    
    -webkit-appearance: none;
    
    -moz-appearance: none;
    
    cursor: pointer;
    
    transition: all 0.25s ease;
    
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    
    background-repeat: no-repeat;
    
    background-position: right 18px center;
    
    background-size: 18px;
}

/*
|--------------------------------------------------------------------------
| Placeholder Option
|--------------------------------------------------------------------------
*/

.zpcrm-field select option:first-child {
    
    color: #8b8b99;
}

/*
|--------------------------------------------------------------------------
| Hover
|--------------------------------------------------------------------------
*/

.zpcrm-field select:hover {
    
    border-color: #6c63ff;
}

/*
|--------------------------------------------------------------------------
| Focus
|--------------------------------------------------------------------------
*/

.zpcrm-field select:focus {
    
    outline: none;
    
    border-color: #4f46e5;
    
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

/*
|--------------------------------------------------------------------------
| Fix Text Visibility
|--------------------------------------------------------------------------
*/

.zpcrm-field select,
.zpcrm-field option {
    
    color: #1a1a1a !important;
    
    background: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .zpcrm-field select {

        height: 54px;

        font-size: 15px;
    }
}

@media(max-width:768px){

    .zpcrm-grid{
        grid-template-columns:1fr;
    }

    .zpcrm-progress{
        overflow-x:auto;
        gap:20px;
    }
}