body {
    background: #F7F8FB;
    overflow-x: hidden !important;
}

.pre-signup-container {
    background: #F7F8FB;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.pre-signup-container .title {
    font-family: Poppins;
    font-size: 31px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
    color: #1E2F47; 
    margin: 30px 0px;
}

.pre-signup-container .wrapper {
    width: 100%;
    max-width: 800px;
    display: flex;
    /* align-items: flex-start; */
    flex-direction: column;
    justify-content: center;
    background-color: white;
    padding: 28px 28px 40px 28px;
    gap: 15px; /*24px*/
}

.pre-signup-container .wrapper .step-title {
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #1E2F47;
    margin: 0px;
}

.pre-signup-container .wrapper .step {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pre-signup-container .wrapper .radio-btn-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #164DB1;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

input[type="radio"]:checked::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #164DB1; 
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-52%, -55%); */
}

.pre-signup-container .wrapper .radio-btn-wrapper .radio-label {
    display: flex;
    flex: 1;
}

.pre-signup-container .wrapper .radio-btn-wrapper .radio-content {
    cursor: pointer;
    display: flex;
    padding: 16px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    flex-grow: 1;
    border-radius: 5px;
    background: #FFF;
    border: 1px solid #FFF;
    box-shadow: 0px 5px 20px 0px rgba(38, 46, 73, 0.03), 0px 3px 5px 0px rgba(38, 46, 73, 0.04), 0px 2.727px 4.719px 0px rgba(38, 46, 73, 0.03);
}

.pre-signup-container .wrapper .radio-btn-wrapper .radio-content p {
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px;
}

.radio-content.selected {
    border: 1px solid #1956C7 !important;
}

.pre-signup-container .wrapper .radio-btn-wrapper .radio-content .radio-content-icon-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pre-signup-container .wrapper .radio-btn-wrapper .radio-content .radio-content-icon-title-wrapper span {
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #0B0B0B;
}

.pre-signup-container .wrapper .step .btns-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.pre-signup-container .wrapper .step .btns-wrapper .next-btn {
    display: flex;
    height: 50px;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 5px;
    background-color: #EEF0F9;
    max-width: 400px;
    width: 100%;
    /* cursor: pointer; */
    border: none;

    /*Font*/
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #666769;

    /* Add transition for smooth background and color change */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.next-btn.active {
    background-color: #1C60DD !important;
    color: #FFF !important;
    cursor: pointer;
}

.next-btn2.active {
    background-color: #1C60DD !important;
    color: #FFF !important;
    cursor: pointer;
}

.pre-signup-container .wrapper .step .btns-wrapper .back-btn {
    display: flex;
    height: 50px;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 5px;
    background-color: white;
    max-width: 400px;
    width: 100%;
    max-width: 192px;
    cursor: pointer;
    /* cursor: pointer; */
    border: 1px solid #1C60DD;

    /*Font*/
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: black;

    /* Add transition for smooth background and color change */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pre-signup-container .wrapper .step .btns-wrapper .back-btn:hover {
    background-color: #1C60DD;
    color: white;
}

.pre-signup-container .wrapper .step .btns-wrapper .next-btn2 {
    display: flex;
    height: 50px;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 5px;
    background-color: #EEF0F9;
    max-width: 400px;
    width: 100%;
    max-width: 192px;
    /* cursor: pointer; */
    border: none;

    /*Font*/
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #666769;

    /* Add transition for smooth background and color change */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.all-rights-reserved {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.all-rights-reserved p {
    color: #4D5162;
    text-align: center;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media only screen and (max-width:860px) {
    .pre-signup-container .wrapper {
        max-width: 720px;
    }
}

@media only screen and (max-width:768px) {
    .pre-signup-container .wrapper {
        max-width: none;
        width: 85%;
    }
}

@media only screen and (max-width:467px) {
    .pre-signup-container .title {
        width: 85%;
    }
    .pre-signup-container .wrapper {
        width: 80%;
    }
    .pre-signup-container .wrapper .radio-btn-wrapper .radio-content .radio-content-icon-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .all-rights-reserved {
        margin-top: 50px;
    }
}