/** floating labels **/

.did-floating-label-content {
    position: relative;
    margin-bottom: 20px;
}

.did-floating-label {
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 11px;
    padding: 0 5px;
    background: #fff;
    border-radius: 3px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.did-floating-input, .did-floating-select {
    display: block;
    width: 100%;
    height: 36px;
    padding: 0 20px;
    background: #fff;
    border-radius: 6px;
    box-sizing: border-box;
}

.did-floating-input.form-control:focus,
.did-floating-select.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

.did-floating-input:focus ~ .did-floating-label,
.did-floating-select:focus ~ .did-floating-label {
    top: -8px;
    font-size: 11px;
}

select.did-floating-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.did-floating-select::-ms-expand {
    display: none;
}

.did-floating-input:not(:placeholder-shown) ~ .did-floating-label {
    top: -8px;
    font-size: 11px;
}

.did-floating-select:not([value=""]):valid ~ .did-floating-label {
    top: -8px;
    font-size: 11px;
}

.did-floating-select[value=""]:focus ~ .did-floating-label {
    top: 11px;
    font-size: 11px;
}
/** end floating labels **/

.auth-form-main-style .form-control {
    border: 1px solid #C1C1C1;
    height: 40px;
    padding-top: 10px;
}

.auth-form-main-style .form-control.is-invalid {
    border-color: #d22346;
}

.auth-form-main-style .form-group {
    margin-bottom: 15px;
}

.auth-form-main-style form {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.auth-form-main-style form > div:not(:last-child) {
    /*margin-bottom: 50px;*/
}

.auth-form-main-style .form-inputs > div:last-child {
    /*margin-bottom: 0;*/
}

.auth-form-main-style .form-inputs {
    position: relative;
}

.auth-form-main-style .aux-link {
    position: absolute;
    right: 0;
    bottom: -10px;
    color: #FE7271;
    font-size: 11px;
}

.auth-form-main-style .form-buttons .btn {
    border-radius: 6px;
    width: 100%;
    border: 1px solid #F0BA00;
    background-color: white;
    color: black;
    font-weight: bold;
    height: 40px;
    margin-bottom: 15px;
}

.auth-form-main-style .form-buttons .btn:hover {
    background-color: #FFFBF2;
}

.auth-form-main-style .form-buttons .btn.btn-primary {
    background-color: #F0BA00;
    color: white;
}

.auth-form-main-style .form-buttons .btn.btn-primary:hover {
    background-color: #FFC81C;
}

.footer-bottom-note-link {
    font-weight: bold;
    color: inherit;
}

.auth-form-main-style .form-inputs,
.auth-form-main-style .form-buttons {
    padding-top: 30px;
}

.auth-form-main-style .form-group label {
    font-size: 12px;
    color: #70657b;
    margin-bottom: 4px;
    font-weight: normal;
}

.auth-form-main-style button {
    box-shadow: none;
    text-transform: capitalize;
}

.auth-form-main-style .form-footer {
    font-size: 12px;
    text-align: center;
    color: #70657b;
}
