@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bs-primary-gradient: linear-gradient(90deg, #ff6201 0%, #3a71de 100%);
    --bs-primary-gradient-135: linear-gradient(135deg, #ff6302 0%, #3a71de 100%);
    --bs-dark-gradient: linear-gradient(135deg, #000000 0%, #585858 100%);
    --bs-black: #000000;
    --bs-black-01: rgb(0, 0, 0, 0.1);
    --bs-black-02: rgb(0, 0, 0, 0.2);
    --bs-black-03: rgb(0, 0, 0, 0.3);
    --bs-black-05: rgb(0, 0, 0, 0.5);
    --bs-black-06: rgb(0, 0, 0, 0.6);
    --bs-black-07: rgb(0, 0, 0, 0.7);
    --bs-dark: #171717;
    --bs-dark-03: rgb(23, 23, 23, 0.3);
    --bs-white: #ffffff;
    --bs-d914: rgb(217, 217, 217, 0.14);
    --fs-12: 12px;
    --fs-13: 13px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-24: 24px;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
}

body {
    font-family: "Inter Tight", sans-serif;
    background: url("../img/biosite-bg.png") no-repeat center center/cover;
    height: 100vh;
    overflow-y: hidden;
}

.bs-white-btn {
  all: unset;
  color: var(--bs-black);
  padding: 8px 16px;
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
  line-height: 18px;
  border: 0.025rem solid var(--bs-black-01);
  border-radius: 10px;
}

/*** Authentication pages  ***/

.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.auth-container {
    text-align: center;
}

.auth-brand-logo {
    margin-bottom: 25px;
}

.auth-brand-logo img {
    width: 180px;
    height: auto;
    object-fit: cover;
}

.auth-form-title {
    font-size: var(--fs-24);
    font-weight: var(--fw-medium);
    margin-bottom: 12px;
    text-transform: capitalize;
}

.auth-form-des {
    margin-bottom: 25px;
    font-size: var(--fs-14);
    font-weight: var(--fw-regular);
    color: rgb(0, 0, 0, 0.5);
}

.sent-mail {
    color: var(--bs-black);
    font-weight: var(--fw-medium);
}

.auth-form {
    padding: 50px 35px;
    background: var(--bs-white);
    border-radius: 20px;
    box-shadow: 0px 1px 6px 2px rgba(0, 0, 0, 0.045);
    width: 460px;
}

.auth-form .input-group .form-control {
    border-radius: 0 10px 10px 0 !important;
}

.auth-form label {
    display: block;
    text-align: left;
}

.auth-submit-btn {
    all: unset;
    margin-top: 25px;
    width: -moz-available;
    width: -webkit-fill-available;
    width: -o-fill-available;
    width: fill-available;
    background: linear-gradient(90deg, #585858 0%, #000000 100%);
    color: var(--bs-white);
    padding: 12px;
    font-size: 14px;
    font-weight: var(--fw-semibold);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-nav-attention {
    color: var(--bs-black-03);
    font-size: var(--fs-14);
    font-weight: var(--fw-medium);
    margin-top: 15px;
    margin-bottom: 0;
}

.auth-nav-attention .auth-nav-btn {
    color: var(--bs-black);
    text-decoration: none;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.otp-inputs .form-control {
    width: 45px;
    height: 45px;
    text-align: center;
}

.otp-resend {
    padding: 12px;
    font-size: 14px;
    font-weight: var(--fw-medium);
}

.otp-resend span {
    text-decoration: underline;
}

.otp-resend .otp-timer {
    text-decoration: none !important;
}

.form-label {
    font-size: var(--fs-14);
    font-weight: var(--fw-regular);
    color: var(--bs-black-03);
    /* text-transform: capitalize; */
    margin-bottom: 8px;
}

.form-control {
    font-size: var(--fs-14);
    font-weight: var(--fw-regular);
    color: var(--bs-black);
    background-color: var(--bs-white);
    border: 0.03rem solid var(--bs-black-01);
    border-radius: 10px;
    padding: 12px;
}

.form-select {
  padding: 12px;
  font-size: var(--fs-14);
  color: var(--bs-black);
  font-weight: var(--fw-medium);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.03) 0px -50px 36px -28px inset;
}

.form-control:disabled,
.form-select:disabled,
.form-check-input:disabled {
    background-color: rgb(0, 0, 0, 0.035);
}

.form-control::placeholder {
    color: var(--bs-black-03);
}

.form-control:focus,
.form-select:focus {
    border: 0.03rem solid var(--bs-black-01);
    box-shadow: 0 0 6px 0.15rem rgba(255, 99, 2, 0.1);
    border-color: rgb(255, 99, 2, 0.2);
}


.input-group-text {
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--bs-black);
    padding: 0 14px;
    background-color: transparent;
    border-radius: 12px 0 0 12px;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group .form-select {
    min-width: 110px !important;
    max-width: 110px !important;
}

.error {
  display: block;
  color: #e30000;
  font-size: var(--fs-13);
  font-weight: var(--fw-medium);
}

#countryCode-error {
  display: none !important;
}

.input-group .error {
    display: block !important;
    width: fit-content;
    color: #e30000;
    font-size: var(--fs-13);
    font-weight: var(--fw-medium);
}

.input-group small.character-count {
    display: block;
    width: 100%;
    text-align: end;
}

.available-username-container {
    display: block !important;
    width: 100% !important;
    font-size: 11px;
    color: var(--bs-black-04);
    font-weight: var(--fw-semibold);
    margin: 6px 0;
    text-align: left;
}

.form-check-input[type=checkbox]:checked {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"), linear-gradient(90deg, #FF6201 0%, #3A71DE 100%);
    background-color: transparent;
    background-size: contain;
    background-position: center;
}

.form-check-input:focus {
    box-shadow: 0 0 0 9px .085rem var(--bs-black-01);
}

.text-sm {
    font-size: var(--fs-13) !important;
}

.modal-header {
    padding: 0;
    margin: 0;
    border: none;
    padding-bottom: 24px;
    border-bottom: 0.025rem solid var(--bs-black-02);
}

.modal-header button {
    all: unset;
    margin-left: auto;
}

.modal-content {
    padding: 24px;
    border-radius: 18px;
    border: none;
}

/* terms-condition */

.policy-condition {
    padding: 30px 2px 80px 20px;
}

.policy-condition-list {
    margin: 20px 0;
}

.policy-condition ul {
    margin: 6px 15px 0 0;
}

.policy-condition-heading {
    font-size: 30px;
    text-align: center;
    margin-bottom: 18px;
    font-weight: var(--fw-medium);
    color: var(--black);
    /* text-transform: capitalize; */
}

.policy-condition-title {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: var(--fw-medium);
    color: var(--black);
    text-transform: capitalize;
}

.policy-condition-sub-title {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: var(--fw-medium);
    color: var(--black);
}

.policy-condition-text,
.policy-condition-list ul li,
.policy-condition-list ul p,
.policy-condition-list span {
    font-size: 14px;
    margin-bottom: 3px;
    font-weight: var(--fw-regular);
    color: var(--bs-black-05);
    line-height: 1.75;
}

.policy-condition-list span,
.policy-condition-text p {
    font-size: 14px;
    font-weight: var(--fw-medium);
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}

*::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: rgb(217, 217, 217, 0.15);
}

*::-webkit-scrollbar-track:hover {
  background-color: rgb(217, 217, 217, 0.2);
}

*::-webkit-scrollbar-track:active {
  background-color: rgb(217, 217, 217, 0.2);
}

*::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgb(217, 217, 217, 0.35);
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgb(217, 217, 217, 0.45);
}

*::-webkit-scrollbar-thumb:active {
  background-color: rgb(217, 217, 217, 0.45);
}

/* Chrome, Edge and Safari */

/*** Authentication pages  ***/

.message-content-section {
  font-size: var(--fs-13);
  margin-bottom: 12px;
  font-weight: var(--fw-semibold);
}

.message-content-section,
#message-content-section {
  margin-top: 5px;
  display: table;
}

.bs-success-text {
  background: var(--bs-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  line-height: 18px;
}

.bs-warning-text {
  color: #FAC600;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  line-height: 18px;
}

.bs-danger-text {
  color: #e30000;
  font-size: var(--fs-14);
  font-weight: var(--fw-medium);
  line-height: 18px;
}

/* form-image-input-custom */
.share-block {
  border-radius: 24px;
  background: rgb(0, 0, 0, 0.025);
  padding: 16px 12px;
}

/* username checker loader */
.loader-username-checker {
  position: absolute;
  right: 12px;
  top: 41px;
  width: 24px;
  height: 24px;
  z-index: 5;
}

/* username checker icon */
#username_checker_icon.right-icon {
  position: absolute;
  right: 10px;
  top: 41px;
  font-size: 14px;
  font-style: normal;
  color: #fff;
  border-radius: 100px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

#username_checker_icon.fa-check.right-icon {
  background: #00A34B;
}

.fa-check:before {
  margin-top: 1px !important;
}

#username_checker_icon.fa-xmark.right-icon {
  background: #e30000;
}

.fa-xmark:before {
  margin-top: 1px !important;
}

.bs-loader {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  padding: 0.01rem;
  background: conic-gradient(#fff 10%, #FF6201) content-box;
  -webkit-mask:
    repeating-conic-gradient(#0000 0deg, #000 1deg 20deg, #0000 21deg 36deg),
    radial-gradient(farthest-side, #0000 calc(100% - 4.5px), #000 calc(100% - 4px));
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: s4 1.25s infinite steps(10);
  text-align: center;
}

@keyframes s4 {
  to {
    transform: rotate(1turn)
  }
}


@media (max-width: 992px) {
    .auth-brand-logo {
        margin-bottom: 20px;
    }

    .auth-brand-logo img {
        width: 150px;
    }

    .auth-form {
        padding: 40px 25px;
        margin: 0 auto;
    }

    .auth-form-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .auth-form-des {
        font-size: var(--fs-13);
        margin-bottom: 20px;
    }

    .auth-nav-attention {
        font-size: var(--fs-13);
    }

}

@media (max-width: 768px) {
    .otp-inputs .form-control {
        width: 40px;
        height: 40px;
    }

    .modal-header {
        padding-bottom: 6px;
    }
}

@media (max-width: 575px) {
    .auth-form {
        padding: 30px 25px;
        margin: 0 auto;
        width: 95%;
    }

    .auth-brand-logo img {
        width: 125px;
    }

    .auth-form-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .otp-inputs .form-control {
        width: 35px;
        height: 35px;
    }

    .otp-inputs {
        margin-bottom: 25px;
    }

}