
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {

    --primaryColor: #CE0E2D;
    --black: #000000;
    --lightText: #6C6C6C;
    --borderColor: #9F9F9F;
    --placeholderColor: #b2b2b2;

    --bodyFont: "Poppins", sans-serif;
    --headingFont: "Roboto", sans-serif;
    --secondaryFont: "Inter", sans-serif;

    --shadow: 0px 2px 3px 4px rgba(0, 0, 0, 0.05);
  }


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: var(--bodyFont);
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

main {
    overflow-y: auto!important; /* Enable vertical scroll if content overflows */
}

a{
    color: var(--primaryColor);
    text-decoration: none;
    display: inline-block;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--headingFont);
}

.theme-btn{
    border: none;
}

.theme-btn, .submit-btn, .theme-outline {
    padding: 12px;
}



form{
    width: 100%;
}

.form-control:focus, .btn:focus, select:focus {
    border-color: #CE0E2D !important; /* Custom red border */
    box-shadow: 0 0 0 0.2rem rgba(206, 14, 45, 0.5) !important; /* Custom red shadow */
  }

input, .country-select{
    border: 1px solid var(--borderColor)!important;
    border-radius: 5px!important;
    padding: 15px!important;
    font-size: 16px!important;
}

input::placeholder{
    color: var(--placeholderColor)!important;
    font-family: var(--bodyFont)!important;
    font-size: 16px!important;
    font-weight: 400!important;
}

.navbar {
    background-color: #fff!important;
}

.navbar-collapse {
    display: flex;
    justify-content: flex-end;
}


.lang-switcher {
    border: 0;
}


.navbar-brand img {
    max-height: 50px;
    margin-left: 50px;
}

.body-logo {
    max-height: 294px;
    max-width: 460px;
}

.rounded-md{
    border-radius: 30px;
    padding: 9px 18px
}

.icon {
    display: flex;
    align-items: center;
    margin-right: 28px;
    /* justify-content: flex-end; */
}

.circle {
    border: 1px solid #000000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
    margin-right: 5px;
}


@media only screen and (max-width: 720px) {
    .navbar-brand img {
        max-height: 50px;
        margin-left: 50px;
    }
}



/* Main Content */

.form-wrapper{
    max-width: 574px;
    box-shadow: var(--shadow);
}

.form-header{
    padding-bottom: 42px;
    font-weight: bold;
}

.form-link{
    font-size: 15px;
}


 .toggle {
     display: none;
}
 .toggle, .toggle:after, .toggle:before, .toggle *, .toggle *:after, .toggle *:before, .toggle + .toggle-btn {
     box-sizing: border-box;
}
 .toggle::selection, .toggle:after::selection, .toggle:before::selection, .toggle *::selection, .toggle *:after::selection, .toggle *:before::selection, .toggle + .toggle-btn::selection {
     background: none;
}
 .toggle + .toggle-btn {
     outline: 0;
     display: block;
     width: 52px;
     height: 31px;
     position: relative;
     cursor: pointer;
     user-select: none;
}
 .toggle + .toggle-btn:after, .toggle + .toggle-btn:before {
     position: relative;
     display: block;
     content: "";
     width: 50%;
     height: 100%;
}
 .toggle + .toggle-btn:after {
     left: 0;
}
 .toggle + .toggle-btn:before {
     display: none;
}
 .toggle:checked + .toggle-btn:after {
     left: 50%;
}
 .toggle-switch + .toggle-btn {
     background: #f0f0f0;
     border-radius: 17px;
     padding: 2px;
     transition: all 0.4s ease;
}
 .toggle-switch + .toggle-btn:after {
     border-radius: 50%;
     background: #fff;
     transition: all 0.2s ease;
}
.toggle-switch:checked + .toggle-btn {
     background:#ff3547;
}


.aggrement-row p{
    font-size: 15px;
    margin: 0;
    max-width: 85%!important;
    font-family: var(--headingFont)!important;
}


span.email-icon {
    background: #C1272D;
    color: #fff;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.eimail-confirm-wrapper{
    border-radius: 20px!important;
}

.eimail-confirm-wrapper h5 {
    font-size: 18px;
    font-weight: 400;
    max-width: 80%;
    color: #000;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 34px;
}

.eimail-confirm-wrapper p {
    font-size: 14px;
    line-height: 22px;
    color: #000;
    font-family: 'Roboto';
    width: 80%;
}

a.resend-email {
    font-size: 18px;
    font-family: 'Roboto';
    margin-top: 30px;
}

.step-wrapper{
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.step-wrapper li{
    margin-top: 40px;
}

.step-wrapper .s-content {
    margin-left: 55px;
    margin-top: -30px;
}
.step-wrapper li span i{
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    line-height: 40px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    color: #fff;
    z-index: 999;
    position: relative;
}


.step-wrapper::after {
    content: '';
    width: 1px;
    height: var(--line-height);
    background-color: #FFD3DA;
    position: absolute;
    left: 20px;
    top: 40px;
}

.s-content p {
    color: #6C6C6C;
    margin: 0;
}

.s-content ul {
    margin: 0;
    padding-left: 16px;
    margin-top: -18px;
}

.s-content ul li {
    color: #6C6C6C;
}

ul.step-wrapper li .complete i {
    background: #FFF2F2;
    color: #D20E2C;
}

.step-wrapper h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 32px;
}


/* Step 02 */
.option-item {
    margin-top: 12px;
}

.option-item input[type="radio"] {
    position: absolute;
    left: -9999px;
}

.option-item label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    color: #666;
}

.option-item label::before,
.option-item label::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transition: 0.2s ease;
}

.option-item label::before {
    border: 1px solid var(--primaryColor);
    background: #FFF2F2;
}

.option-item input[type="radio"]:checked + label::after {
    background: var(--primaryColor);
    transform: scale(1);
    opacity: 1;
}

.option-item input[type="radio"]:not(:checked) + label::after {
    transform: scale(0);
    opacity: 0;
}

.submit-btn {
    color: white;
    background-color: #EDA8B3;
    border: none;
    cursor: not-allowed;
    transition: background-color 0.3s ease;
}

.submit-btn.active {
    background-color: #CE0E2D;
    cursor: pointer;
}

ul.step-wrapper li .s-content ul li {
    margin-top: 10px;
}

ul.step-wrapper li .s-content ul {
    margin-top: 20px;
}

/* Modal Style */
.personal-dataForm .modal-header .btn-close {
    right: 20px !important;
}

.modal{
    --bs-modal-width: 917px;
}

.personal-dataForm button.close-btn {
    margin-right: 20px;
    border: 2px solid #000;
    padding: 5px 14px;
    color: #D20E2C;
    font-weight: 500;
    font-family: 'Roboto';
    border-radius: 4px;
}



.personal-dataForm .modal-header {
    border-bottom: 5px solid #E3E3E3;
    justify-content: center;
    padding: 22px 0px;
}

.personal-dataForm .modal-title{
    font-size: 22px;
}

.custom-aleart {
    border: none;
    background: #F2F4F7;
    max-width: 754px;
    margin: auto;
}

.custom-aleart p {
    margin-bottom: 0;
    font-size: 18px;
}

.form-group {
    max-width: 754px;
    margin: auto;
}

.modal-form h5 {
    font-size: 18px;
}

.info-alert p {
    color: #6C6C6C;
    margin-top: 18px;
    font-size: 16px;
}

.alert-box{
    background-color: #FFD3DA;
    border: 2px solid var(--primaryColor);
    border-radius: 4px;
}

.alert-box p{
    color: #6C6C6C;
    font-size: 16px;
    margin: 0;
    padding: 18px;
}

.personal-dataForm .back-btn {
    left: 20px;
}

.country-select, .lang-select{
    color: #6C6C6C;
    font-size: 16px!important;
    padding: 15px!important;
}

.country-select{
    color:#212529;
}

.lang-select{
    color:#212529;
    border: 1px solid #9F9F9F !important;
}

.bt{
    border-top: 2px solid #757575;
}

.bb{
    border-bottom: 2px solid #757575;
}

.identiti-item{
    padding: 15px 10px;
}

.icon-box p{
    margin: 0;
    margin-left: 10px;
}

/* Main layout */
.container-fluid {
    display: flex;
}

.login-wrapper, .reset-wrapper{
    max-width: 376px;
    margin: auto;
}

.reset-wrapper p{
    color: rgba(0, 0, 0, 0.53);
    font-size: 14px;
}

.reset-wrapper a{
    background-color: #D20E2C;
}

.reset-wrapper ul{
    list-style: disc;
    margin-left: 20px;
}

.form-section {
    padding: 4rem;
}
.image-section {
    background-image: url('../img/login-bg.png'); /* Replace with your image */
    background-size: cover;
    background-position: center;
}

.login-bg-section{
    background-image: url('../img/login-bg.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
}

/* Custom styles */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}
.cookie-banner button {
    background-color: #d9534f;
    color: #fff;
}

.login-wrapper h1 {
    font-size: 38px;
    max-width: 80%;
    font-family: var(--bodyFont);
    font-weight: 600;
}

.login-wrapper p {
    font-size: 14px;
}

.toggle-password {
    float: right;
    cursor: pointer;
    margin-right: 10px;
    margin-top: -25px;
}

.logo{
    top: 12px;
    left: 60px;
}


.wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
}

.cookies {
    bottom: 13px;
    right: 30px;
    border-radius: 8px;
    max-width: 415px;
    overflow: hidden;
}

.cookies p {
    color: #6C6C6C;
    font-size: 12px;
    margin-top: 30px;
}

.card-body.cookie-card-body {
    padding: 30px;
}

.card-footer.cookie-card-footer button {
    border-radius: 0px;
}

.cookies a {
    color: #000000;
    text-decoration: underline !important;
    display: inline;
    font-weight: 600;
}
.btn[disabled] {
    background-color: #E7ABAD;
    color: #fff;
    cursor: not-allowed;
}

.btn.active {
    background-color: #dc3545;
    color: #fff;
    cursor: pointer;
}

.card-body.cookie-card-body h5 {
    font-size: 20px !important;
    font-weight: 600 !important;
}

#togglePassword {
    top: 66%;
    transform: translateY(-50%);
    right: 1rem;
}

.btn-outline-danger:hover {
    color: #fff !important;
}

.modal-dialog {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 1rem);
}

.otp-input {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin: 0 5px;
}



.right-wrapper .login-right img {
    max-width: 350px;
    height: 350px;
}

.right-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    padding: 65px;
    width: 100%;
}

.qr-img {
    text-align: right;
    max-width: 150px;
}

.qr-img img{
    width: 100%;
}

.login-right{
    padding-bottom: 100px;
}

.qr-content h2 {font-size: 55px;}

.qr-content h2 span {
    color: #C1272D;
}

.qr-content p {
    font-size: 20px;
    font-weight: 500;
}

.loading-spinner, .kyc-status-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.loading-spinner.hide, .kyc-status-spinner.hide, .lp-form-content-form.hide, span#valid-msg .hide, span#error-msg .hide {
    display: none;
}

.lds-ripple, .kyc-status-spinner-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ripple div, .kyc-status-spinner-ripple div {
    position: absolute;
    border: 4px solid #cf092d;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  .lds-ripple div:nth-child(2), .kyc-status-spinner-ripple div:nth-child(2) {
    animation-delay: -0.5s;
  }
  @keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    4.9% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    5% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }
.loading-spinner{
    z-index: 999999;
}

h5.highlight {
    padding-left: 15px;
    padding-top: 20px;
}

.formCheckBox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.commonP {
    color: #6C6C6C;
    letter-spacing: 0.2px;
}

.tips {
    margin-top: 100px;
}

img#icon_group{
    width: 40% !important;
}

span.select2.select2-container.select2-container--default {
    width: 100% !important;
}
.select2-container--default .select2-selection--single {
    width: 100% !important;
    height: 56px !important;
    border-radius: 5px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 56px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
}
.fi-rounded {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    width: 19px !important;
    height: 19px !important;
    border-radius: 50% !important;
    background-position: center !important;
    padding: 0 !important;
    vertical-align: middle;
}
@media only screen and (max-width: 575px) {
    #login_body .wrapper {
        display: flex;
        width: 100%;
        height: 100% !important;
    }
    html, body#login_body{
        overflow: scroll !important;
    }

    body#login_body .logo {
        position: unset !important;
    }

   /* .load-content.topSpace {
        padding-top: 80px !important;
    } */
}
