:root {
    --theme-main-green-color: #00A87A;
    --theme-dark-gray-color : #464643;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    position: relative;
    scroll-behavior: smooth;
}

body,html {
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    color: var(--theme-dark-gray-color);
}

.theme-btn-black {
    background-color: var(--theme-dark-gray-color);
    color: #fff;
    border: 2px solid #fff;
}

.theme-btn-black:hover {
    color: var(--theme-dark-gray-color);
    background-color: #fff;
    border: 2px solid var(--theme-dark-gray-color);
}

.theme-bg-green-color {
    background-color: var(--theme-main-green-color);
}

.theme-text-green {
    color: var(--theme-main-green-color);
}

a:hover {
    color: var(--theme-main-green-color);
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.05rem rgb(73 194 156);
}

.authentication-card {
    background-color: rgba(28, 179, 131, 0.8);
}

.authentication-bg {
    background: url("../img/authentication.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.overlay-bg {
    background-color: rgba(182, 180, 180, 0.25);
    width: 100%;
    height: 100%;
}

span.mobile-extension {
    background: #fff;
    padding: .375rem .25rem;
    border: 0;
    border-top: 1px solid #ced4da;
    border-left: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
}

.mobile-number {
    border: 0;
    border-top: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
}

.otp-input-fields {
    margin: auto;
    max-width: 400px;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 40px;
  }
  .otp-input-fields input {
    height: 40px;
    width: 40px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #00b17f;
    background-color: #fff;
    text-align: center;
    outline: none;
    font-size: 16px;
    /* Firefox */
  }
  .otp-input-fields input::-webkit-outer-spin-button, .otp-input-fields input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .otp-input-fields input[type=number] {
    -moz-appearance: textfield;
  }
  .otp-input-fields input:focus {
    border-width: 2px;
    border-color: #00b17f;
    font-size: 20px;
  }
  .main-bg {
    background: url("../img/main_bg.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
}
.main-bg1 {
    background: url("../img/main_green_bg.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
}
.conset-form-input:checked {
    background-color: var(--theme-main-green-color);
    border-color: #0d6efd;
}
.theme-green-btn {
    background-color: #00A87A;
    color: #fff;
    border: 2px solid #fff;
}
.theme-green-btn:hover {
    color: #00A87A;
    background-color: #fff;
    border: 2px solid #00A87A;
}
.count-card {
    border-radius: 3rem 3rem 0 0;
    border: 0;
    background-color: #00A87A;
}
.count-card .card-body {
    background-color: #fff;
}
.count-card .card-header,
.count-card .card-body {
    border-radius: 3rem 3rem 0 0;
    border: 0;
}
.progressbar {
    background: linear-gradient(90deg, #ABC1C9 -29.25%, #C4E0E8 -28.74%);
    width: 100%;
    height: 25px;
    position: relative;
    border-radius: 20px;
}
.progressbar:before {
    position: absolute;
    top: 8.6%;
    left: 1%;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    content: '';
    background: linear-gradient(136.99deg, #F6F7F9 -289.51%, #EBF2F5 -287.85%, #D0E4EA -285.02%, #CBE2E8 -284.47%);
    z-index: 1;
}
.progressbar .bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 50%;
    border-radius: 20px;
    content: '';
    background-color: #00A87A;
}

@media(max-width: 991px) {
    .bg-m-white {
        background-color: rgba(255, 255, 255, 0.9);
    }
}

.banner-area {
    background-image: url('../img/thank-you.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 250px;
    height: 100%;
    position: relative; /* Make the container position relative */
}
.home-btn {
    position: absolute;
    top: 20px; /* Adjust as needed */
    left: 20px; /* Adjust as needed */
}
