/* .dop-signup-box {
    background-image: url(../images/signup-bg.jpg);
    padding: 63px 100px 60px;
    border-radius: 10px;
    box-shadow: 0px 40px 50px 0px rgba(0, 24, 72, 0.3);
    overflow: hidden;
    position: relative;
    margin-bottom: -160px;
} */

.dop-signup-box {
    background-image: url(../images/signup-bg.jpg);
    padding: 63px 100px 60px;
    border-radius: 10px;
    box-shadow: 0px 40px 50px 0px rgba(0, 24, 72, 0.3);
    overflow: hidden;
    position: relative;
    margin: 0; /* Remove margin-bottom to avoid overlap */
    width: 100%; /* Ensure it takes full width of the parent */
}

@media (max-width: 992px) { /* Assuming $md is 992px */
    .dop-signup-box {
        padding: 30px 50px;
    }
}

@media (max-width: 576px) { /* Assuming $xs is 576px */
    .dop-signup-box {
        padding: 30px;
    }
}

.dop-signup-box .thumb {
    position: absolute;
    right: 70px;
    bottom: 30px;
    width: 160px;
}

@media (max-width: 992px) {
    .dop-signup-box .thumb {
        display: none;
    }
}

@media (max-width: 576px) {
    .dop-signup-box .thumb {
        display: none;
    }
}

.dop-signup-box span {
    color: #fff; /* Assuming $white is #fff */
    font-weight: 500;
}

.dop-signup-box .title {
    font-size: 46px;
    color: #fff; /* Assuming $white is #fff */
    padding-bottom: 20px;
}

@media (max-width: 576px) {
    .dop-signup-box .title {
        font-size: 30px;
    }
}

.dop-signup-box form {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .dop-signup-box form {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .dop-signup-box form {
        flex-direction: column;
    }
}

.dop-signup-box form .input-box {
    margin-right: 10px;
    margin-top: 10px;
}
.dop-signup-box form .input-box-small {
	width: 30%;
    margin-right: 10px;
    margin-top: 10px;
}
.dop-signup-box form .input-box-lg {
    width: 100%; /* Ensure the container takes full width */
    margin-right: 10px; /* Adjust as needed */
    margin-top: 10px;   /* Adjust as needed */
}

.dop-signup-box form .input-box input {
    width: 300px;
    background: #fff; /* Assuming $white is #fff */
    line-height: 55px;
    border-radius: 6px;
    padding-left: 30px;
    border: 0;
}
.dop-signup-box form .input-box-small input {
    width: 100%;
    background: #fff; /* Assuming $white is #fff */
    line-height: 55px;
    border-radius: 6px;
    padding-left: 10px;
    border: 0;
}
.dop-signup-box form .input-box-lg input {
    width: 100%;
    background: #fff; /* Assuming $white is #fff */
    line-height: 55px;
    border-radius: 6px;
    padding-left: 30px;
    border: 0;
}

@media (max-width: 992px) {
    .dop-signup-box form .input-box input {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .dop-signup-box form .input-box input {
        width: 100%;
    }
}

.dop-signup-box form .input-box button {
    background: #007bff; /* Assuming $theme-color is #007bff */
    line-height: 55px;
    border: 0;
    color: #fff; /* Assuming $white is #fff */
    border-radius: 6px;
    padding: 0 45px;
    font-weight: 500;
}

.dop_checkbox_common {
    margin-top: 15px;
}

.dop_checkbox_common label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: 400;
}

.dop_checkbox_common label a {
    text-decoration: underline;
    color: #b3b6bc;
}

.dop_checkbox_common input[type="checkbox"] {
    display: none;
}

.dop_checkbox_common input[type="checkbox"] + label span {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: -1px 15px 0 0;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    position: relative;
}

.dop_checkbox_common input[type="checkbox"] + label span:before {
    color: #fff;
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro';
    font-size: 11px;
    position: absolute;
    text-align: center;
    left: 3px;
    top: -1px;
    transform: scale(0);
    transition: transform 0.2s;
}

.dop_checkbox_common input[type="checkbox"]:checked + label span {
    background: #2079ff;
    border-color: #2079ff;
}

.dop_checkbox_common input[type="checkbox"]:checked + label span:before {
    transform: scale(1);
}

.dop_checkbox_common input[type="checkbox"] + label span,
.dop_checkbox_common input[type="checkbox"]:checked + label span {
    transition: background-color 0.2s linear;
}

.dop_checkbox_common.checkbox_style2 input[type="checkbox"] + label span {
    border-radius: 3px;
}

.dop-signup-box form .input-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.dop-signup-box form .input-row .input-box {
    flex: 1;
    margin-right: 10px;
}

.dop-signup-box form .input-row .input-box:last-child {
    margin-right: 0;
}

.icons-table {
    margin-right: 10px;
    margin-top: 50px;
}

.icons-table table {
	width: 100%;
	table-layout: fixed; /* Makes the table width fixed */
	border-collapse: collapse; /* Optional: for cleaner borders */
}
.icons-table table td {
	width: 25%; /* Each td takes 25% of the table width */
	text-align: center; /* Center-align text */
}