.dynamic-form {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    font-family: Roboto, sans-serif;
    padding: 38px;
    color: #fff;
    background-color: #003366;
}

.df-form-title{
    max-width: 400px;
}

.df-form-title h2 {
    font-size: 30px;
    font-family: Roboto, sans-serif;
    margin: 0;
    font-weight: bold;
    color: #fff;
}

.df-step-indicator {
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    color: #fff;
    background-color: #7F99B2;
    padding: 16px 18px;
}

.df-progress-bar {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 5px;
    margin-bottom: 20px;
    height: 20px;
    overflow: hidden;
}

.df-progress {
    height: 100%;
    background-color: #0073e6;
    width: 0%;
    transition: width 0.3s ease-in-out;
}

.df-steps {
    position: relative;
}

.df-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.df-step.active {
    display: block;
    opacity: 1;
}

.df-field {
    margin-bottom: 15px;
}

.df-field > label{
    margin-bottom: 25px;

}

.df-field label {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    color: #FFFFFF;
}

.df-field select,
.df-field input{
    background-color: #ECF5FE;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #003366;
    padding: 17px 20px;
    cursor: pointer;
    outline: none!important;
}

.df-field .radio label {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 190%;
    color: #FFFFFF;
}

.df-field input,
.df-field textarea,
.df-field select {
    box-sizing: border-box;
}

.df-field .checkbox,
.df-field .radio {
    display: flex;
    align-items: center;
}

.df-field .checkbox input,
.df-field .radio input {
    margin-right: 25px;
    width: 14px;
    height: 14px;
    color: #7F99B2;
    background-color: #7F99B2;
    cursor: pointer;
}

.df-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.df-navigation button {
    padding: 15px 35px;
    border: none;
    cursor: pointer;
    background-color: #fff;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #003366!important;

}

.df-navigation .df-prev-step img{
    margin-right: 10px;
}
.df-navigation .df-next-step img{
    margin-left: 10px;
}


.df-navigation button:hover,
.df-navigation button:focus{
    color: #ffffff!important;
    background-color: #7F99B2!important;
}

.df-navigation button:hover {
    background-color: #005bb5;
}

.df-submit {
    padding: 10px 20px;
    background-color: #28a745;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.df-submit:hover {
    background-color: #218838;
}

.df-errors p {
    margin: 25px 0 5px 0;
}

.df-success-message {
    text-align: center;
    font-size: 1.2em;
    margin-top: 20px;
    color: #fff;
    border: 2px solid #185592;
    padding: 10px;
}

.df-wrapper-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.df-divider{
    width: 100%;
    height: 2px;
    background-color: #185592;
    margin: 25px 0 35px 0;
}

div[data-step="0"] .df-navigation{
    justify-content: end;
}

