
/* Container for radio option */
.select_option {
    display: flex;
    flex-direction: row;
}

.radio-card {
    display: flex;
    flex-direction: row;
    border: 2px solid #1A5D5D;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    cursor: pointer;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    width: 50%;
    position: relative;
    margin-right: 8px;
}

form#profile_form input {
    color: black;
    font-family: 'Outfit';
    font-weight: 300;
}

/* Selected state */
.radio-card:hover, .radio-card input:checked + .content-option {
    border-color: #185B63;
}


.content-option {
    display: flex;
;
    flex-direction: row;
}
/* Hidden radio input */
.radio-card input {
    display: none;
}

/* Icon */
.icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E8F5F5;
    border-radius: 50%;
}

.icon img {
    max-width: 20px;
    max-height: 20px;
}

/* Text content */
.text-content {
    flex-grow: 1;
}

.text-content .title {
    font-size: 16px;
    font-weight: bold;
    color: #30B876;
    margin: 0;
}

.text-content .description {
    font-size: 14px;
    color: #999;
    margin: 5px 0 0;
}

/* Checkmark */
.checkmark {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: absolute;
    right: 10px;
    top: 27px;
}

.radio-card input:checked + .content-option .checkmark {
    background-color: #30B876;
    border-color: #30B876;
}

.radio-card input:checked + .content-option .checkmark::before {
    content: '✓';
    color: #fff;
    font-size: 14px;
}


/*other_form_options*/
.other_details p {
    background: #E86C000D;
    padding: 0 20px;
    border-radius: 7px;
    margin-bottom: initial !important;
}


.other_details input , .other_details select{
    padding: 5px;
    border-radius: 7px;
    border: solid 1px #DDDDDD !important;
    font-family: 'Outfit-regular';
    color: black;
}

button#submit_profile {
    background-color: var(--primary);
    font-size: 18px;
    color: white;
    float: right;
    padding: 12px 40px;
    margin-right: 10px;
}

.container.mt-5.form_data {
    margin-top: 10px !important;
}

