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

.cf-fields {
    grid-column-gap: 2%;
    -ms-grid-columns: (1fr 2%) (12);
    grid-row-gap: 24px;
    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, select.cf-field, textarea.cf-field {
    color: #fff;
    margin-top: 8px;
    border: unset;
    border-radius: 8px;
    padding: 12px 20px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    height: 58px;
}

input.cf-field.invalid, select.cf-field.invalid {
    border: 2px solid #A82525 !important;
    background-color: #da9c9c88  !important;
}

input.cf-field:focus, select.cf-field:focus {
    border: 2px solid #a12fd6;
    box-shadow: none !important;
}

input.cf-field:focus-visible, select.cf-field:focus-visible {
    /* border: unset !important; */
    outline: unset;
}

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

.cf-section{
    font-family: "Inter", sans-serif;
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0px;
    text-align: left
}

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

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

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

option{
    color: #000;
}

.radio-label{
    color: #E6E6E6;
    font-size: 12px;
    line-height: 12px;
    text-align: center;
}
    .radio-label.left{
        margin-bottom: 8px;
    }
    .rate-wrapper{
        padding: 16px 20px;
        border: unset;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        min-height: 130px;
    }
    .rate-wrapper.invalid{
        border: 2px solid #A82525 !important;
        background-color: #da9c9c88 !important;
    }
    .rate-wrapper p{
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        margin: 0 0 12px 0;
    }
    .radio-wrapper{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .left-radio-wrapper{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
        gap: 8px;
    }
    .left-roption{
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        
    }
    .left-roption .radio-field{
        margin-right: 8px;
    }
    .roption{
        /* width: 25%;
        text-align: center; */
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
    }
    input[type="radio"]{
        margin-bottom: 8px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        width: 20px;
        height: 20px;
        border: 1px solid #ffffff;
        border-radius: 50%;
        transition: all 0.2s ease;
        cursor: pointer;
        padding: 10px 10px;
        position: relative;
    }
    input[type="radio"]:checked {
        border-color: #a12fd6;
    }

    input[type="radio"]:checked::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        background-color: #a12fd6;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    input[type="radio"]:focus {
        box-shadow: 0 0 0 3px rgba(91, 6, 112, 0.5); /* Add a focus indicator */
        border: unset;
    }

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

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

#mainErrorContainer {
    border: 2px solid #A82525;
    border-radius: 8px;
    padding: 16px;
    background: #FFF6F6;
    margin-bottom: 18px;
}
#feedbackSuccess {
    border: 1px solid #84dba7;
    border-radius: 8px;
    padding: 20px;
    background: #b3d0b3;
    text-align: center;
    margin-bottom: 80px;
}
.successTitle{
    color: darkgreen;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.successDesc{
    color: black;
    font-size: 17px;
    margin-bottom: 0;
}

.warning {
    color: #DA9C9C;
    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 */