/**************************************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);
    /* width: 100%; */
}
.cf-field-wrapper{
    grid-column: 1 / -1;
    min-width: 0;
    position:relative;
}
.one-third-row{
    grid-column: span 4;
}
.half-row{
    grid-column: span 6;
}
.row-45{
    grid-column: span 10;
}
.full-row{
    grid-column: span 12;
}
input.cf-field, select.cf-field {
    margin-top: 8px;
    border: 1px solid #BDBDBD;
    border-radius: 8px;
    padding: 16px 20px;
    width: 100%;
    background-color: transparent;
}
input.cf-field.invalid{
    border: 1px solid #DA9C9C!important;
    background-color: #FFF6F6!important;
}
input.cf-field:focus {
    border: 1px solid #ffae00!important;
    background-color: #fff6e1!important;
}
input.cf-field:focus-visible{
    border: unset!important;
}
input:-internal-autofill-selected{
    background-color: transparent!important;
}
/* tnc question */
.cf-checkbox{
    border: 2px solid #B6B6B6!important;
    width: 24px;
    height: 24px;
    vertical-align: top
}
.cf-checkbox-2{
    border: 2px solid #B6B6B6!important;
    width: 24px;
    height: 24px;
}
label.checkbox-label{
    display:inline;
    vertical-align: super;
}
/* user role question */
.radio-options{
    display: flex; 
    flex-wrap: wrap; 
    gap: 16px;
}
.cf-label, .radio-label {
    font-family: "Montserrat", serif;
    display: block;
    color: #211F60;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    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;
    margin-bottom: 0;
}
.radio-option-sublabel{
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    color: #000;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}
.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;
}
.disabled-option {
    color: gray;
    font-style: italic;
}
#visit_time {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none; 
    background: url('https://metaverse.myfuturejobs.gov.my/booking/assets/images/icon/chevron-down.svg') no-repeat 93% center;
    background-size: 12px; 
    padding: 15px 20px; 
    border: 1px solid #BDBDBD; 
    border-radius: 8px;
    font-size: 16px; 
} 

.cf-field-wrapper .password-icon {
    display: flex;
    position: absolute;
    top: 46px;
    left:285px;
    width: 1.2rem;
    color: #CBD5E1;
    transition: color 0.2s;
}
.cf-field-wrapper .password-icon .feather-eye {
    display: none;
}
#fullName, #mfj_fullname, .participantName{
    text-transform: uppercase!important;
}
::-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: 12px !important;
    line-height: 18px !important;
    font-weight: 600 !important;
    margin-top: 4px;
}
#main_error_container,
#main_error_container1,
#main_error_container2,
#main_error_container3{
    border: 1px solid #DA9C9C;
    border-radius: 8px;
    padding: 16px;
    background: #FFF6F6;
}
#pass-validate-char, #pass-validate-num, #pass-validate-sym, #pass-validate-upper, #pass-validate-pair{
    display: block;
    color: #838795;
    font-size: 12px !important;
    line-height: 18px !important;
    font-weight: 600 !important;
    margin-top: 4px;
}
 .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 */