/**************************************CUSTOM FORM****************************************/
input::-ms-reveal,
input::-ms-clear {
    display: none;
}
.cf-fields {
    grid-column-gap: 2%;
    -ms-grid-columns: (1fr 2%) (12);
    grid-row-gap: 32px;
    display: grid !important;
    grid-template-columns:repeat(12, 1fr);
    grid-template-rows:repeat(auto-fill, auto);
}
.cf-field-wrapper{
    grid-column: 1 / -1;
    min-width: 0;
    position:relative;
}
.half-row{
    grid-column: span 6;
}
.row-45{
    grid-column: span 10;
}
.full-row{
    grid-column: span 12;
}
input.cf-field {
    color: #fff;
    margin-top: 8px;
    border: 2px solid #FDFDFD;
    border-radius: 8px;
    padding: 16px 20px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
}
input.cf-field::placeholder{
    color: rgba(255, 255, 255, 0.7);
}
input.cf-field.invalid{
    border: 2px solid #FF3C3C99!important;
    background-color:rgba(255, 255, 255, 0.1)!important;;
}
input.cf-field:focus {
    border: 3px solid #FDFDFD!important;
    background-color: rgba(255, 255, 255, 0.1)!important;
}
input.cf-field:focus-visible{
    outline: none;
}
input:-internal-autofill-selected{
    background-color: transparent!important;
}
/* tnc question */
.cf-checkbox{
    border: 2px solid #B6B6B6!important;
    width: 24px;
    height: 24px;
}
label.checkbox-label{
    display:inline-block;
    vertical-align: super;
}
/* user role question */
.cf-label, .radio-label {
    font-family: "Inter", sans-serif;
    display: block;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 0px;
}
label.radio-option-image{
    margin-bottom: 0;
}
.radio-option-label{
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #000;
    text-align: center;
    margin-top: 12px;
}
.radio-option-image > img{
    background: linear-gradient(103.06deg, #FFFFFF 16.74%, #FCFCFC 97.41%);
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    box-shadow: 0px 1px 4px 0px #0000001A;
    box-shadow: 0px 1px 2px 0px #FFFFFF inset;
}
.radio-field{
    display: none;
}
.radio-option-image{
    cursor: pointer;
}
.radio-option-image > input:checked + img{
    border: 1px solid #ffae00;
}
::-webkit-input-placeholder { /* WebKit browsers */
    text-transform: none;
}

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

.warning{
    color: #fff!important;
    font-size: 13px !important;
    line-height: 18px !important;
    font-weight: 500 !important;
}
.warning img{
    width: 13px;
    vertical-align: text-top;
    margin-right: 4px;
}
.check{
    color: #0DB04E!important;
}
@media only screen and (max-width: 600px) {
    .cf-label {
        font-size: 18px;
        line-height: 20px;
    }
    input.cf-field {
        margin-top: 8px;
        border: 1px solid #FDFDFD;
        backdrop-filter: blur(20px);
    }
}
/* custom form css END */