.form-container {
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    padding: 0 10%;
    margin-top: 100px;
    margin-bottom: 100px;
}

.form-control {
    background-color: #f2f2f2 !important;
    border: none;
    border-radius: 5px;
    height: 50px;
    font-size: 14px;
}

.merge-form-control{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f2f2f2 !important;
    border: none;
    border-radius: 5px;
    height: 50px;
    padding: 10px;
}

.merge-form-control input{
    height: 30px;
    border-radius: 0;
}

.merge-form-control input:last-child{
    width: 40%;
    flex: 0 0 40%;
    border-right: 1px solid #aaa;
}

.merge-form-control input:first-child{
    flex-grow: 1;
}

textarea.form-control {
    height: 100px;
}

.radio-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.radio-group input[type="radio"] {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #232077;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.radio-group input[type="radio"]:checked::before {
    content: '';
    width: 16px;
    height: 16px;
    background-color: #232077;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    transform: translate(-50%, -50%);
}

.radio-group label {
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
}

.form-title{
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1E1E1E;
    text-align: center;
}

.form-title-2nd{
    margin-top: 50px;
}

.btn-submit {
    background-color: #0D0D67 !important;
    color: white !important;
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    font-size: 15px;
    height: 56px;
}

@media screen  and (max-width: 768px) {
    .form-container {
        padding:0 !important
    }
}