body {
    font-family: 'Prompt', sans-serif;
    background-color: #d0d0ce;
}
.register-card {
    background: white;
    border: 0;
    border-radius: 27.5px;
    box-shadow: 0 10px 30px 0 rgba(172, 168, 168, 0.43);
    overflow: hidden;
}

.register-card-img {
    border-radius: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.register-card .card-body {
    padding: 85px 60px 60px;
}

.input-container {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

.icon {
    padding: 10px;
    background: #ccc;
    color: white;
    min-width: 50px;
    text-align: center;
}

.input-field {
    width: 100%;
    padding: 10px;
    outline: none;
}

.input-field:focus {
    border: 2px solid dodgerblue;
}

/* Set a style for the submit button */
.btn {
    background-color: #ccc;
    color: black;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

.btn:hover {
    background-color: dodgerblue;
}

@media (max-width: 422px) {
    body , * {
        font-size: 14px;
    }
}

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

.did-floating-label {
    color: #1e4c82;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 11px;
    padding: 0 5px;
    background: #fff;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.did-floating-input, .did-floating-select {
    font-size: 14px;
    display: block;
    width: 100%;
    height: 36px;
    padding: 0 30px;
    background: #fff;
    color: #323840;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
}

.did-floating-input:focus, .did-floating-select:focus {
    outline: none;
}

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

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: -10px;
    font-size: 14px;
}

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

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

.did-floating-select:not([multiple]):not([size]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath id='Path_1' data-name='Path 1' d='M371,294l4,6,4-6Z' transform='translate(-371 -294)' fill='%23003d71'/%3E%3C/svg%3E%0A");
    background-position: right 15px top 50%;
    background-repeat: no-repeat;
}

.did-error-input .did-floating-input, .did-error-input .did-floating-select {
    border: 1px solid #C4C4C4;
    color: #9d3b3b;
}

.did-error-input .did-floating-label {
    font-weight: 600;
    color: #9d3b3b;
}

.did-error-input .did-floating-select:not([multiple]):not([size]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath id='Path_1' data-name='Path 1' d='M371,294l4,6,4-6Z' transform='translate(-371 -294)' fill='%239d3b3b'/%3E%3C/svg%3E%0A");
}

.input-group {
    display: flex;
}

.input-group .did-floating-input {
    border-radius: 0 4px 4px 0;
    border-left: 0;
    padding-left: 0;
}

.input-group-append {
    display: flex;
    align-items: center;
    /*   margin-left:-1px; */
}

.input-group-text {
    display: flex;
    align-items: center;
    font-weight: 400;
    height: 34px;
    color: #323840;
    padding: 0 5px 0 20px;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #C4C4C4;
    border-radius: 4px 0 0 4px;
    border-right: none;
}

form {
    margin: 2em 0;
}

form > .form-row {
    display: flex;
    margin: 0.75em 0;
    position: relative;
}

form > .form-row > span {
    background: #fff;
    color: #adafca;
    display: inline-block;
    font-weight: 400;
    left: 1em;
    padding: 0 0.5em;
    position: absolute;
    pointer-events: none;
    transform: translatey(-50%);
    top: 50%;
    transition: all 300ms ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

form > .form-row > input, form > .form-row > button {
    border-radius: 0.5em;
    font-family: inherit;
    padding: 1em 0.5em;
    width: 100%;
}

form > .form-row > input {
    font-weight: bold;
    transition: 100ms ease all;
    width: 100%;
}

form > .form-row > input[type=text], form > .form-row > input[type=password] {
    border: 0.075em solid #ddd;
}

form > .form-row > input:valid + span {
    top: 0;
    font-size: 0.9rem;
}

form > .form-row > input:invalid + span {
    top: 50%;
}

form > .form-row > input:focus + span {
    top: 0;
}

form > .form-row > input:required {
    box-shadow: none;
}

form > .form-row > input:focus {
    border-color: #fc8700;
    outline: none;
}

form > .form-row > input:focus:invalid {
    box-shadow: none;
    top: 50%;
}

form > .form-row > input:focus:valid {
    top: 0;
}

form > .form-row > button {
    background-color: #fc8700;
    border: 0.1em solid #f26a21;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: all 300ms ease;
}

form > .form-row > button:focus {
    border: 0.1em solid #f26a21;
    outline: none;
}

form > .form-row > button:hover {
    background-color: #f26a21;
}

h3.title {
    font-size: 28px;
    font-weight: 700;
    color: #093030;
    margin-bottom: 25px;
}

p.sub-title {
    color: #B5BAB8;
    font-size: 14px;
    margin-bottom: 25px;
}

p span.phone-number {
    display: block;
    color: #093030;
    font-weight: 600;
}

.wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-items: space-between;
}

.wrapper input.field {
    width: 40px;
    line-height: 50px;
    font-size: 30px;
    border: none;
    background-color: #EAF5F6;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    color: #093030;
    margin-bottom: 25px;
}

.wrapper input.field:focus {
    outline: none;
}

button.resend {
    background-color: transparent;
    border: none;
    font-weight: 600;
    color: #3DAFE1;
    cursor: pointer;
}

button.resend i {
    margin-left: 5px;
}

.inputs input {
    width: 40px;
    height: 40px
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}

.c-otp {
    text-align: center;
}
.c-otp__label {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}
.c-otp__input {
    border: solid 1px #B8B8B8;
    border-radius: 3px;
    color: #000000;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    height: 48px;
    margin-right: 3px;
    outline: none;
    text-align: center;
    -webkit-appearance: none;
    width: 34px;
}

.mystyle {
    display: none;
}
