.dr-container{
    max-width:900px;
    margin:40px auto;
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.dr-progress{
    width:100%;
    height:10px;
    background:#ececec;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:30px;
}

.dr-progress-bar{
    width:50%;
    height:100%;
    background:#2e7d32;
    transition:.4s;
}

.dr-step{
    display:none;
}

.dr-step.active{
    display:block;
}

.dr-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.dr-col{
    flex:1;
}

.dr-container label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
}

.dr-container input,
.dr-container select,
.dr-container textarea{

width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
font-size:15px;

}

.dr-container textarea{
min-height:120px;
resize:vertical;
}

.dr-buttons{
display:flex;
justify-content:space-between;
margin-top:30px;
}

.dr-btn{
background:#2e7d32;
color:#fff;
padding:12px 30px;
border:none;
border-radius:8px;
cursor:pointer;
font-size:16px;
}

.dr-btn:hover{
background:#256428;
}

@media(max-width:768px){

.dr-row{
flex-direction:column;
}

}