/**************************************CUSTOM FORM****************************************/
.formTitle {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
}
input::-ms-reveal,
input::-ms-clear {
    display: none;
}

.cf-fields {
    grid-column-gap: 2%;
    -ms-grid-columns: (1fr 2%) (12);
    grid-row-gap: 16px;
    display: grid !important;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(auto-fill, auto);
    /* width: 100%; */
}

.cf-field-wrapper {
    grid-column: 1 / -1;
    min-width: 0;
    position: relative;
    text-align: left;
}

.half-row {
    grid-column: span 6;
}

.full-row {
    grid-column: span 12;
}

input.cf-field {
    margin-top: 8px;
    border: unset;
    border-radius: 8px;
    padding: 12px 20px;
    width: -webkit-fill-available;
    background-color: rgba(0, 0, 0, 0.1);
    height: 34px;
}

input.cf-field.invalid {
    border: 1px solid #DA9C9C !important;
    background-color: #FFF6F6 !important;
}

input.cf-field:focus {
    border: 1px solid #ED1C24 !important;
    box-shadow: none !important;
    /* background-color: #fff6e1!important; */
}

input.cf-field:focus-visible {
    border: unset !important;
}

input:-internal-autofill-selected {
    background-color: transparent !important;
}

.cf-label {
    font-family: "Inter", sans-serif;
    display: block;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0px;
    text-align: left
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    text-transform: none;
}

/* .form-placeholder {
    background-color: #f6f6f6;
    color: #000;
    border-radius: 16px;
    max-width: 747px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 24px;
} */

/* .login-content {
    display: grid;
    align-items: center;
    align-content: center;
    justify-content: center;
} */

/* FONT-TEXT */
.error-text {
    color: #A82525;
    font-size: 13px !important;
    line-height: 15px !important;
    font-weight: 600 !important;
    margin-top: 4px;
}

#main_error_container {
    border: 1px solid #DA9C9C;
    border-radius: 8px;
    padding: 16px;
    background: #FFF6F6;
}
#success_container {
    border: 1px solid #84dba7;
    border-radius: 8px;
    padding: 16px;
    background: #E6F9E6;
    text-align: center;
}

.warning {
    color: #A82525 !important;
    font-size: 12px !important;
    line-height: 18px !important;
    font-weight: 600 !important;
    margin-top: 4px;
}

.check {
    color: #0DB04E !important;
}

@media only screen and (max-width: 600px) {

    .half-row,
    .one-third-row,
    .row-45 {
        grid-column: 1 / -1;
    }

    .radio-options {
        justify-content: space-around;
    }
}

/* custom form css END */