.btn-primary {     
    margin: 5px;
    border-radius: 8px;
    border: 1.5px solid var(--white);    
    color: var(--white);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 6px 40px;
}
.btn-primary-green {
    color: #fff;
    background-color: var(--emeraldgreen);
    border-color: var(--emeraldgreen);
    margin: 5px;
}
.btn:hover {
    color: var(--white);
}
.btn-secondary {
    border-radius: 8px;
    border: 1.5px solid #0c61e7;
    background: #EEF2FC;
    color: #0c61e7;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 6px 40px;
}
.form-control {
    border-radius: 8px;
    border: 1px solid #2A42E4 !important;
    background: #FFF;
    color: #737373;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.form-select {
    border-radius: 8px;
    border: 1px solid #2A42E4;
    color: #2D2C2F;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.16px;
    padding: .375rem 2.25rem .375rem .75rem;
    height: 50px;
}
.form-label {
    color: #55627B;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
}
.required {
    color: #DA1010;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.3px;
}

/* Password field css starts */
.password-field {
    position: relative;
}
.password-field .form-control {
    padding-right: 80px;
}
.hide-password{
    display: none;
}
.show-password, .hide-password {
    position: absolute;
    top: 37px;
    right: 10px;
    cursor: pointer;
}
.show-password span, .hide-password span {
    color: #0C61E7 !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.3px;
    text-decoration: none;
}
.password-field .form-control.input-validation-error {
    padding-right: 110px;
}
.password-field .form-control.input-validation-error + .show-password, 
.password-field .form-control.input-validation-error + .show-password + .hide-password {
    right: 40px;
}
/* Password field css ends */
.form-check.checkbox {
    padding-left: 2rem;
}
.form-check-input[type=checkbox] {
    border-radius: 0px;
    border-color: #55627B;
    border-width: 2px;
    width: 20px;
    height: 20px;
}
.checkbox .form-check-label {
    color: #757575;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.3px;
}
.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    pointer-events: none;
    opacity: .65;
    background: var(--royalblue) !important;
    color:white;
    text-decoration: none;
}
/*------- Enable/Disable Button with Slider Switch -------*/
.switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 34px;
    }

    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      transition: .4s;
      border-radius: 34px;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 26px;
      width: 26px;
      left: 4px;
      bottom: 4px;
      background-color: var(--white);
      transition: .4s;
      border-radius: 50%;
    }

input:checked + .slider {
    background-color: var(--dodgerblue);
}

    input:checked + .slider:before {
      transform: translateX(26px);
    }