body {
    font-family: 'DBHeavent' !important;
    background-image: url("../images/bg.png");
	/* background-image: linear-gradient(to bottom right, #e51d20 0%, #984abd 43%, #2577c7 50%); */
    background-size: 100% 100%;
    background-position: unset;
    font-size: 1.4rem;
}

.container{
    margin-bottom:5%;
}

.form-control{
    font-size: 1.2rem;
}

#form-header{
    margin-top:5%;
    text-align:center;
}

#form-tagline{
    background: #334155;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    color:white;
    padding: 4%;
    text-align:left;
}

#form-tagline .fa{
    margin-bottom:15%;
}

#form-tagline h2 {
    margin-bottom:15%;
}

#form-content{
    background: #f4f4f4;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius:0.5rem;
    padding: 3%;
}

.form-group{
  margin-top:5%;
}

.img-head{
    width: 600px;
}

.contact{
    padding: 4%;
    height: 400px;
}

.control-label{
    font-size:16px;
    font-weight:600;
}

.dt{
    font-size: 20px;
}

div .submit-button{
    margin-top:3%;
    text-align:right;
}

button#submit{
    white-space: normal;
    width:auto;
    background: #ff6d00;
    color: #ffffff;
    font-weight: 600;
    width: 25%;
}

.btn-custom {
    width: 180px;
    flex: 1 1 auto;
    margin: 10px;
    padding: 15px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 15px;
    cursor: pointer;
}

.submit-btn {
    background-image: linear-gradient(to bottom right, #e51d20 0%, #984abd 50%, #2577c7 100%);
    border: none;
}

.btn-custom[disabled] {
    background: gray; /* Change to your desired color */
    cursor: not-allowed;
}

.btn-custom-otp {
    width: 120px;
    flex: 1 1 auto;
    margin: 10px;
    padding: 9px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 20px;
    cursor: pointer;
}

.btn-otp {
    background-image: linear-gradient(to bottom right, #e51d20 0%, #984abd 50%, #2577c7 100%);
    border: none;
}

.img-h{
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
}

input[type=radio]{
    width: 18px;
    height: 18px;
}

input[type=checkbox]{
    width: 15px;
    height: 15px;
}

.font-bold{
    font-weight: bold;
}

.form-group{
    margin-top: 2%;
    margin-bottom: 0px;
}

.upload-container {
    width: 150px; /* Adjust the width and height as needed */
    height: 150px;
    border-radius: 50%; /* Creates the circular shape */
    border: 2px solid #ced4da; /* Dashed border */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; /* Show pointer cursor on hover */
    overflow: hidden; /* Hide overflow */
}

/* Hide the default file input */
.file-input {
    display: none;
}

.upload-image {
    /*max-width: 100%;*/
    max-height: 100%;
}

.checkbox-sty{
    margin-top: -3px;
}

.upload-icon {
    position: absolute; /* Position icon absolute within container */
    padding: 37px;
    color: #0e389c;
    bottom: -30px;
    right: 30px;
    margin: 33px;
}

.hide{
    display: none;
}

.otp-box {
    width: 43px;
    height: 45px;
    margin: 5px;
    text-align: center;
    line-height: 50px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: larger;
}

.error-message, .text-red{
    color:red;
    font-size: 18px;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #318fe8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* position: absolute;
    left: -245px;
    right: 0;
    top: -173px;
    z-index: -1;
    width: 470px;
    opacity: 0.4; */

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* boostrap modal content custom */

.close{
    font-size: 2rem;
}

.modal-content{
    border-radius: 1.3rem;
}

/* end boostrap modal content custom */

@media (max-width: 768px) {

    body{
        background-image: linear-gradient(to bottom right, #e51d20 0%, #984abd 43%, #2577c7 50%);
    }

    .container{
        width: 90%;
    }

    .img-head{
        width: 100%;
    }

    .img-h{
        justify-content: center;
    }

    .dt{
        font-size: 22px;
    }

    #form-tagline{
        border-radius: 30px;
    }

    #form-tagline{
        padding: 8%;
        z-index: 3;
    }

    #form-content{
        margin-top: -30px;
        z-index: 2;
        padding: 8%;
        border-radius: 0px;
    }

    .upload-zone{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .nationality-zone{
        display: flex;
        flex-direction: column;
    }

    .upload-icon{
        bottom: -120px;
        right: 20px;
        padding: 100px;
    }
}