body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f8f9fa;
}
.mobile-container {
    max-width: 430px;
    min-height: 100vh;
    /* border: 1px solid #dee2e6; */
    padding: 15px;
    box-sizing: border-box;
    background: #0313b0;
    color: #fff;
    margin: auto;

    background-image: url('/assets/images/bg/bg-register.webp');
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #010105;
}

.desktop-container {
    max-width: 100%;
    min-height: 100vh;
    padding: 15px;
    box-sizing: border-box;
    background: #0313b0;
    color: #fff;
    margin: auto;

    background-image: url('/assets/images/bg/bg-desktop-qrcode.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #cbced0;
}

.w-65 {
    width: 65% !important;
}
.mt-20 {
    margin-top: 16rem !important;
}
.mt-10 {
    margin-top: 4.5rem !important;
}

/* Title */
.font-vnm {
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'VNM Standard';
}

/* SELECT */
.select2-container .select2-selection--single {
    height: unset;
    padding: 16px;
    border-radius: 9px;
    border-width: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: center;
    text-transform: uppercase;
    color: #0313b0;
    font-family: 'VNM Standard';
    padding-top: 3px;
    font-weight: bold;
    font-size: 1.3rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    position: relative;
    border-color: unset;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    content: '';
    position: absolute;
    top: 64%;
    left: -20%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-image: url(/assets/images/icon/icon-arrow-down.png);
    background-size: contain;
    background-repeat: no-repeat;
}

/* FORM */
/* Custom form input */
.form-group {
    margin-bottom: 0.5rem;
    /* display: flex;
    justify-content: center; */
    width: 90%;
}

.border-gradient {
    border: 1px solid transparent;
    cursor: pointer;
    background-image:
        linear-gradient(#f9f1ac, #f9f1ac),
        linear-gradient(to right, #c08f2e, #ffffff);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}

.box-form-group {
    flex-direction: column;
}

.box-form-group label {
    margin: 0;
    margin-left: 10px;
    color: #000;
    font-size: 1.25rem;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 1);
    font-family: 'VNM Standard';
}

#customer-register-submit {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#pg-login {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-control {
    font-size: 1.1rem;
    border-radius: 13px;
    padding: 25px;
    padding-bottom: 28px;
    width: 100%;
    text-align: left;
    color: #000000;
    font-weight: normal;
    font-family: 'VNM Standard';

    border: 2px solid transparent;
    cursor: pointer;
}

.html, body {
    overflow: hidden;
}
.form-control::placeholder {
    text-align: left;
    color: #a6a6a6;
    font-family: 'VNM Standard';
    font-weight: normal;
    font-style: normal;
    font-size: 1.1rem;
}

.title-pg {
    color: #ffffff;
    margin-top: 2rem;
    font-size: 1.6rem;
    font-weight: bold;
}

.text-18-tuoi {
    color: #000000;
    margin-top: 2rem;
    font-size: 0.65rem;
    font-weight: bold;
    font-style: italic;
}

/* BTN */
.btn-primary {
    text-transform: capitalize;
    color: #0313b0;
    font-size: 1.1rem;
    background-color: #ffffff;
    border-color: #ffffff;
    box-shadow: none;
    border-radius: 23px;
    padding: 8px;
    width: 85%;
    font-family: 'VNM Standard';
    font-weight: bold;
    
    border: 1px solid #fff;
    cursor: pointer;
    background-color: #fad151;
    outline: solid;
    outline-color: #fad151;
    outline-width: initial;
    /* background-image:
        linear-gradient(#f9f1ac, #f9f1ac),
        linear-gradient(to right, #c08f2e, #ffffff);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box; */
}

/* FORM WITH IMAGE TITLE */
.input-with-image {
    position: relative;
}
.input-with-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 14%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
}

.input-with-image-email::after {
    background-image: url(/assets/images/icon/icon-email.png);
}
.input-with-image-password::after {
    background-image: url(/assets/images/icon/icon-password.png);
}
.input-with-image-user::after {
    background-image: url(/assets/images/icon/icon-user.png);
}
.input-with-image-phone::after {
    background-image: url(/assets/images/icon/icon-phone.png);
}

/* Style checkbox */
/* Style cho toàn bộ label */
.pl-custom {
    padding-left: 2rem !important;
}
.form-checkbox-custom {
    width: 85%;
}
.form-check-label {
    font-size: 0.68rem !important;
    color: #0313b0;
}
.form-check-span {
    font-size: 0.53rem !important;
    color: #0313b0;
}
.checkbox-custom label {
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
  }
  
  /* Style cho input checkbox */
.checkbox-custom input[type='checkbox'] {
    display: none;
  }
  
  /* Tạo khung check với border và size */ 
.checkbox-custom label::before {
    position: absolute;
    top: 3px;
    left: -2rem;
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 1.5px solid #0313b0;
    border-radius: 3px;
  }
  
  /* Thêm dấu tick bên trong khi checked */
.checkbox-custom input[type='checkbox']:checked + label::before {
    content: '';
    width: 25px;
    height: 25px;
    background-size: 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-image: url(/assets/images/icon/icon-tick.png);
}

/* Modal custom */
.modal-body, .modal-content {
    border: unset;
    padding: 0 !important;
    background-color: unset;
    box-shadow: unset;
}

.icon-close-modal {
    width: 18px;
    height: 18px;
}

.box-image-gift-sampling {
    position: relative;
}

.btn-ok-modal {
    position: absolute;
    top: 64%;
    left: 50%;
    transform: translate(-50%, -50%); 
    background-color: #cccccc;
    padding: 5px 32px;
    opacity: 0;
}

/* btn custom */
.btn-buy-combo .buy {
    font-weight: 400;
    font-family: 'VNM Standard';
}

.btn-buy-combo .etc {
    color: #fff;
    background: #0313b0;
    width: 50px;
    height: 50px;
    padding: 6px 8.44px 6px 12px;
    border-radius: 50%;
    letter-spacing: 4px;
    font-size: 1.5rem;
    text-align: center;
}

/* Chrome, Safari, Edge, Opera */
.btn-buy-combo .etc::-webkit-outer-spin-button,
.btn-buy-combo .etc::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.btn-buy-combo .etc[type=number] {
  -moz-appearance: textfield;
}

.btn-buy-combo .combo {
    font-weight: bold;
    font-size: 1.5rem;
    font-family: 'VNM Standard';
}

/* Btn buy package */
.mb-6 {
    margin-bottom: 4rem !important;
}
.btn-buy-package {
    z-index: 2;
    border-radius: 4rem;
    padding: unset;
    height: fit-content;
}

.btn-buy-package .title {
    font-weight: bold;
    font-size: 1.8rem;
    text-transform: initial;
    font-family: 'VNM Standard';
    margin-bottom: -5px;
    text-transform: uppercase;
}
.btn-buy-package .sub-title {
    font-weight: 400;
    font-size: 1.4rem;
    text-transform: initial;
    font-family: 'VNM Standard';
}
.btn-buy-sugar {
    width: fit-content;
}

.box-sugar-option .title {
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: initial;
    font-family: 'VNM Standard';
    margin-bottom: -5px;
    text-transform: uppercase;
    color: #0713b0;
    text-align: center;
}

.input-number-bg-white {
    background-color: #ffffff !important;
}

.disabled-input-number {
    background-color: #e4e4e4 !important;
}

/* Input custom buy package */
.input-wrapper {
    position: absolute;
    top: -2.4rem;
    z-index: 1;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-wrapper-no-position {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-sugar-option {
    border-radius: 30px;
    width: -webkit-fill-available;
}

.input-wrapper-sugar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.round-input-sugar {
    width: 50px !important;
    height: 50px !important;
    background: #0713b0 !important;
    font-size: 1.7rem !important;
    text-shadow: 2px 1px 2px #000000 !important;
}
  
.round-input {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #fff;
    background-color: unset;
    font-size: 3rem;
    text-align: center;
    color: #fff;
    font-family: 'VNM Standard';
    text-shadow: 4px 3px 4px #000000;
}

.round-input:focus {
    outline: none;
}

.round-input::placeholder {
    color: #fff !important;
    font-family: 'VNM Standard';
}
.round-input:-webkit-input-placeholder {
    color: #0313b0;
    font-family: 'VNM Standard';
}
  
.round-input:-moz-placeholder {
    color: #0313b0;
    font-family: 'VNM Standard';
}

.round-input:-ms-input-placeholder { 
    color: #0313b0;
    font-family: 'VNM Standard';
}

.round-input::-webkit-input-placeholder {
    color: #0313b0;
    font-family: 'VNM Standard';
}

/* Chrome, Safari, Edge, Opera */
.round-input::-webkit-outer-spin-button,
.round-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.round-input[type=number] {
  -moz-appearance: textfield;
}

.btn-buy-package:focus {
    color: #0313b0 !important;
    background-color: #ffffff !important;
}

.btn-package-active {
    color: #fff !important;
    background-color: #0069d9 !important;
    border-color: #0069d9 !important;
}

.btn-package-active:hover {
    color: #fff !important;
    background-color: #0069d9 !important;
    border-color: #0069d9 !important;
}
.btn-package-active:focus {
    color: #fff !important;
    background-color: #0069d9 !important;
    border-color: #0069d9 !important;
}


/* Green farm green */
/* .btn-buy-package:focus {
    color: #f58021 !important;
    background-color: #ffffff !important;
}

.btn-package-active {
    color: #fff !important;
    background-color: #f58021 !important;
    border-color: #f58021 !important;
}

.btn-package-active:hover {
    color: #fff !important;
    background-color: #f58021 !important;
    border-color: #f58021 !important;
}
.btn-package-active:focus {
    color: #fff !important;
    background-color: #f58021 !important;
    border-color: #f58021 !important;
} */

/* Roll wheel */
.roll-wheel-total {
    border: 1px solid #ffffff;
    border-radius: 50%;
    padding: 1px 4px;
}

.nav-btn {
    border-radius: 50px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    /* background: url('/assets/images/bg/btn-submit.png') no-repeat center center;
    background-size: 100% 100%; */
    background-color: #f54892;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    outline-color: unset;
    outline-width: 0;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.nav-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-btn-back {
    width: 45%;
    text-align: center;
    padding: 12px 16px !important;
    font-size: 1.2rem;
}

.nav-btn-next {
    width: 90%;
    justify-content: center;
    text-align: center;
    padding: 8px 11px !important;
    font-size: 1.7rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-arrow-img-icon {
    width: 45px;
    height: 45px;
}