.container-reg {
    background: #fff;
    padding: 50px;
    padding-top: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(25, 25, 25, 0.23);
    max-width: 1000px;
    width: 100%;
    margin: 75px auto 0 auto;
    margin-bottom: 50px;
}
.sec-cont {
    padding-top:40px;
}
h3 {
    margin-bottom: 24px;
    color: #55aace;
    text-align: center;
}
label {
    display: block;
    margin: 12px 0 6px;
    font-weight: bold;
}
input[type="text"],
input[type="date"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    box-sizing: border-box;
}
input[type="radio"] {
    margin-right: 5px;
    width: 140px;
}
button {
    background: #55aace;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.5s ease;
}
button:hover {
    background: #2bc8f6;
}
.gender-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.gender-option {
    display: flex;
    align-items: center;
    margin-right: 15px; /* Adjust this for spacing between radio buttons */
}

.gender-option input[type="radio"] {
    margin-right: 8px; /* Space between radio button and label */
}

.gender-option label {
    display: inline-block;
}
.submit-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Ensure the container takes full width */
}

.submit-btn {
    padding: 10px 20px; /* Adjust padding to fit your design */
    background-color: #0088ad; /* Example color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.check-terms{
    width: 20px;
}
@media (max-width: 768px) {
    .gender-container{
        text-wrap: nowrap;
    }
    .gender-container input {
        width: 20px;
    }

}



