.container-form {
    border: 1px solid white;
    padding: 10px;
    background: white;
}

.header-section {
    border-bottom: 3px solid purple;
    padding: 0px;
    text-align: center;
}

.header-section .logo img {
    width: 100px;
    border-radius: 50%;
}

.header-content {
    max-width: 600px;
    text-align: center;
}

.header-content .main-title {
    font-size: 1.6rem;
    color: #d9534f;
    /* Bootstrap danger color */
}

.header-content .sub-title {
    font-size: 1.3rem;
    color: #5cb85c;
    /* Bootstrap success color */
}

.header-content .address {
    font-size: 0.9rem;
    margin: 5px 0;
    color: #0464b7 !important;
}

.header-content .contact {
    font-size: 0.85rem;
    font-weight: bold;
    padding: 0px !important;
    color: #0464b7 !important;
}

.header-content .contact span {
    color: red;
}

.body-content {
    padding: 10px;
}

.body-content .body-title {
    border-bottom: 2px solid rebeccapurple;
    color: rebeccapurple;
    width: 300px;
    margin: auto !important;
    font-size: 1.0rem;
}

.membership-form {
    margin-top: 10px;
    width: 100%;
    border: 0px solid #000;
    border-radius: 3px;
    background: #e9e9e9;
    font-family: Arial, sans-serif;
}

.form-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.form-table th,
.form-table td {
    border: 3px solid rgb(255, 255, 255) !important;
    padding-left: 5px;
    padding-right: 5px;
    /* Removed padding */
    text-align: left;
    vertical-align: middle;
}

.section-header th {
    background-color: #4caf507d;
    color: rgb(1, 0, 5);
    font-weight: bold;
}

.section-header .th2 input {
    width: 15px;
    height: 15px;

}

input[type="file"],
input[type="date"],
input[type="email"],
input[type="text"],
input[type="radio"],
select {
    width: 100%;
    border: none;
    font-size: 0.9rem;
    background: #e9e9e9;
}
textarea{
    background: #e9e9e9;
}
.nice-select{
    height: 50px;
}

.allocated-number {
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
}

.contact-info {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #000;
}

/* Remove default radio button styles */
.square-radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid white !important;
    border-radius: 0;
    /* Square shape */
    display: inline-block;
    position: relative;
    margin-right: 5px;
    cursor: pointer;
}

/* When the radio button is checked, add a custom styling */
.square-radio:checked::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background-color: red;
    border-radius: 2px;
    /* Optional, for a small rounded inner part */
}

/* Optional: Styling for hover/focus state */
.square-radio:hover {
    border-color: #007bff;
}

.square-radio:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}
.form-check-input
{
    width: 15px !important;
    height: 15px !important;
    border: 1px solid #7a7f85 !important;
}
.td-bg{
    background-color: #f7ddc9;
    color: #000;
    font-weight: 500;
    font-size: 12px;
    text-wrap: nowrap;
}
.td-bg1{
    background-color: #FBE4D5;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-wrap: nowrap;
}
.td-bg2{
    background-color: #4caf507d;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-wrap: nowrap;
}
.td-bg3{
    background-color: #f3e7387d;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-wrap: nowrap;
}
.td-bg3 h5{
    font-size: 15px;
    /* line-height: 20px; */
}
.td-bg3 span{
   color: red;
}
.td-bg4{
    background-color: #f3e7387d;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    /* text-wrap: nowrap; */
}
.td-bg4 h6{
    color: red;
    margin-top: 10px !important;
    line-height: 0px;
}
.td-bg4 small{
    font-size: 10px;
}

.td-bg5{
    background-color: #4caf507d;
    color: #000;
    font-weight: 500;
    font-size: 13px;
    text-wrap: nowrap;
}
.td-bg6{
    background-color: #fbd2e5;
    color: #000;
    font-weight: 600;
    font-size: 13px;
}
.fs-12{
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
}
.payment-methods img{
    width: 50px !important;
}
.payment-details-wrapper{
    margin: auto !important;
}


@media (max-width: 576px) {
    .div-order-lg {
        order: 2;
    }
    .div-order-sm {
        order: 1;
    }
}
@media (min-width: 992px) {
    .div-order-lg {
        order: 1;
    }
    .div-order-sm {
        order: 2;
    }
}