/*
[Master Stylesheet] 
Project:Template Bundle
-------------------------------------------------------------------*/
/********************************************************
1. body start
 *******************************************************/
:root {
    --temp-primary-color: #30D074;
    --temp-heading-color: #302D39;
    --temp-white-color: #ffffff;
    --temp-text-color: #757575;
    --temp-light-blue-bg: #F0F8FD;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-family: 'Inter';
}

html {
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
}

img,
video {
    max-width: 100%;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
    outline: none !important;
    box-shadow: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    margin: 0px;
    word-break: break-word;
    font-size: 14px;
    font-weight: 400;
    color: var(--temp-text-color);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background-color: #e7e2e2;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 50px;
    height: 100px;
    background-color: var(--temp-primary-color);
}

/* Scrollbar */

/* Preloader CSS Start */
.temp_preloader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--temp-text-color);
}

.temp_preloader img {
    width: 100px;
}

/* Preloader CSS End */

/* Buttton CSS Start */
.temp_btn {
    min-width: 170px;
    min-height: 40px;
    padding: 0 25px;
    background: var(--temp-primary-color);
    border-radius: 4px;
    color: var(--temp-white-color);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    text-transform: capitalize;
    text-decoration: none;
    z-index: 1;
    cursor: pointer;
}

.temp_btn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--temp-heading-color);
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.temp_btn:hover span {
    width: 225%;
    height: 562.5px;
}

.temp_btn:hover {
    color: var(--temp-white-color);
}

.temp_btn_with_arrow {
    gap: 10px;
}

.temp_btn_with_arrow svg {
    transition: all 0.3s;
}

.temp_btn_with_arrow:hover svg {
    transform: translateX(5px);
}

button.temp_btn {
    border: none !important;
    box-shadow: none !important;
}

/* Buttton CSS End*/

/* Checkbox CSS Start */
.temp_checkbox .temp_checkboxInput {
    display: none;
}

.temp_checkbox .temp_checkboxInput+.temp_checkboxLabel {
    font-size: 12px;
    font-weight: 400;
    color: var(--temp-text-color);
    position: relative;
    padding-left: 23px;
    cursor: pointer;
    transition: all 0.3s;
}

.temp_checkbox .temp_checkboxInput+.temp_checkboxLabel:hover {
    color: var(--temp-primary-color);
}

.temp_checkbox .temp_checkboxInput:checked+.temp_checkboxLabel {
    color: var(--temp-primary-color);
}

.temp_checkbox .temp_checkboxInput+.temp_checkboxLabel:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    height: 16px;
    border: 1px solid #D9DBEA;
    background: #FAFAFF;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.temp_checkbox .temp_checkboxInput+.temp_checkboxLabel:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 4px;
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--temp-white-color);
    border-bottom: 2px solid var(--temp-white-color);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(-45deg) scale(0);
    -moz-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(0);
    opacity: 0;
}

.temp_checkbox .temp_checkboxInput:checked+.temp_checkboxLabel:before {
    background: var(--temp-primary-color);
    border-color: var(--temp-primary-color);
}

.temp_checkbox .temp_checkboxInput:checked+.temp_checkboxLabel:after {
    opacity: 1;
    -webkit-transform: rotate(-45deg) scale(1);
    -moz-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
}

/* Checkbox CSS End */

/* Input Field */
.temp_label {
    font-size: 16px;
    font-weight: 500;
    color: var(--temp-heading-color);
    text-transform: capitalize;
    display: block;
    margin-bottom: 10px;
    text-align: left;
}

.temp_input_field {
    width: 100%;
    height: 50px;
    background: #FBFCFF;
    border: 1px solid #ECF1FF;
    border-radius: 6px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 400;
    color: var(--temp-heading-color);
}

.temp_textarea_field {
    width: 100%;
    min-height: 120px;
    height: auto;
    background: #FBFCFF;
    border: 1px solid #ECF1FF;
    border-radius: 6px;
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
    color: var(--temp-heading-color);
}

.temp_input_field::placeholder,
.temp_textarea_field::placeholder {
    color: #A4A4BB;
}

/* Input Field */

/********************************************************
1. body end
 *******************************************************/
.tp_main_wrapper {
    background: radial-gradient(circle, #b4c793, #7cc1a7, #23a6d5, #23d5ab, #b8cbad);
    background-size: 400% 400%;
    -webkit-animation: banner-gradient 30s ease infinite;
    animation: banner-gradient 30s ease infinite;
}

@keyframes banner-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.tp_login_section {
    background-blend-mode: multiply;
    padding: 35px 10px;
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tp_login_flex {
    display: flex;
    justify-content: center;
    max-width: 560px;
    width: 100%;
    margin: auto;
}

.tp_login_vector {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 30px;
}

.tp_login_main {
    max-width: 560px;
    width: 100%;
    padding: 50px;
    background-color: var(--temp-white-color);
    border-radius: 10px;
    z-index: 1;
    height: fit-content;
}

.tp_login_auth>a {
    display: block;
    text-align: center;
}

.tp_login_auth h1 {
    font-size: 24px;
    color: var(--temp-heading-color);
    font-weight: 600;
    margin: 40px 0 6px;
    text-align: center;
}

.tp_login_auth h5 {
    margin-bottom: 35px;
    font-size: 15px;
    font-weight: 400;
    color: var(--temp-text-color);
    text-align: center;
}

/* form css */
input:-webkit-autofill {
    background: transparent !important;
    -webkit-box-shadow: 0 0 0 50px #ffffff inset;
    -webkit-text-fill-color: var(--temp-heading-color);
}

.temp_input {
    position: relative;
    margin-bottom: 15px;
}

.temp_input_field {
    padding: 0 50px 0 20px;
}

.temp_input img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
}

/* form css */
.tp_check_section ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
}

.tp_check_section .temp_checkbox .temp_checkboxInput+.temp_checkboxLabel {
    font-size: 14px;
    padding-left: 28px;
}

.tp_check_section .temp_checkbox .temp_checkboxInput+.temp_checkboxLabel:before {
    top: 0px;
    width: 18px;
    height: 18px;
}

.tp_check_section .temp_checkbox .temp_checkboxInput+.temp_checkboxLabel:after {
    top: 6px;
    width: 9px;
}

.tp_check_section ul li span a {
    font-size: 15px;
    font-weight: 400;
    color: var(--temp-text-color);
}

.tp_check_section ul li span a:hover {
    color: var(--temp-primary-color);
}

.tp_login_btn>p {
    font-size: 15px;
    margin-top: 40px;
    text-align: center;
}

.tp_login_btn>p>a {
    color: var(--temp-primary-color);
    font-weight: 500;
}

.tp_login_btn .temp_btn {
    min-height: 50px;
    width: 100%;
}

/* login css end*/
/* success msg */
.tp_success_msg {
    position: fixed;
    right: 30px;
    top: 30px;
    border-radius: 10px;
    background: var(--temp-white-color);
    padding: 15px 30px 15px 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -moz-transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(100%);
    min-width: 240px;
    max-width: 320px;
}

.tp_success_msg.toster_open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}

.tp_close_icon {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}

.tp_close_icon span {
    font-weight: 700;
    font-size: 20px;
}

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

.tp_happy_img {
    max-width: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp_yeah {
    width: calc(100% - 50px);
}

.tp_yeah h5 {
    color: var(--temp-primary-color);
    font-weight: 600;
    font-size: 16px;
}

.tp_yeah p {
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    margin-top: 3px;
}

.tp_error_msg {
    position: fixed;
    right: 30px;
    top: 30px;
    border-radius: 10px;
    background: var(--temp-white-color);
    padding: 15px 30px 15px 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -moz-transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(100%);
    min-width: 240px;
    max-width: 320px;
}

.tp_error_msg.toster_open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}

.tp_error_msg .tp_yeah h5 {
    color: #f4476c;
    font-weight: 700;
    font-size: 16px;
}

.tp_hide {
    display: none;
}

/* success msg */
/* error msg */
.tp_response {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    padding: 10px 25px;
    border-radius: 10px;
    display: none;
    font-weight: 500;
    background: #3e3c55;
    color: var(--temp-white-color);
    animation: zoom 0.1s linear;
}

.tp_response.mt_error {
    background: #ff3a3a;
    color: var(--temp-white-color);
    display: block;
}

.tp_response.mt_success {
    background: var(--temp-primary-color);
    color: var(--temp-white-color);
    display: block;
}

/* error msg */
/* alert wrapper */
span.error {
    position: absolute;
    bottom: -6px;
    font-weight: 600;
    left: 20px;
    color: #ff3a3a;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 1;
}

/* alert wrapper */
/* social button css */
.tp_socialbtn_wrapper {
    border-top: solid 1px rgb(192 202 219 / 35%);
    padding-top: 35px;
    margin-top: 40px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tp_socialbtn_wrapper>span {
    position: absolute;
    background-color: var(--temp-white-color);
    top: -10px;
    left: 0;
    right: 0;
    width: fit-content;
    margin: auto;
    padding: 0px 10px;
    color: #c0cadb;
    border-radius: 50px;
}

.tp_social_btn button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    box-shadow: none;
    position: relative;
}

.tp_social_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin: 0 auto;
    max-width: 350px;
    width: 100%;
}

input.error {
    border-color: #e51c24
}

span.error {
    color: #e51c24
}

textarea.error {
    border-color: #e51c24
}

select.error {
    border-color: #e51c24
}

label.error,
span.error {
    padding-right: 15px;
    color: #e51c24;
    font-weight: 400;
    left: 0;
    width: 100%;
    font-size: 13px;
    position: relative;
    top: -11px;
    display: none;
}

.tp_social_btn a.temp_btn {
    background: #ffffff;
    color: #000;
    gap: 10px;
    border: 1px solid #ECF1FF;
    border-radius: 8px;
}

/* OTP verify */
.temp_input_box.temp_input_flex {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-top: -10px;
}

.temp_input_box label span {
    color: #f20b0b;
}

.error.error_wrapper {
    position: unset;
    text-align: left;
    font-size: 14px;
}

.temp_input_flexbox {
    display: flex;
    grid-gap: 20px;
}

.temp_input_box input {
    width: 100%;
    height: 50px;
    background-color: transparent;
    color: var(--dark-color);
    border: 1px solid rgb(158 78 238 / 10%);
    padding: 0 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
}

.tp_login_form>div {
    font-size: 15px;
    font-weight: 400;
    color: var(--temp-text-color);
}

.bf_login_btn .temp_btn {
    width: 100%;
    margin-bottom: 10px;
}

.resend-otp {
    cursor: pointer;
    color: var(--temp-primary-color);
    text-decoration: underline;
}

/* OTP verify */
/* responsive css */
@media(max-width: 1399px) {
    .tp_login_section {
        padding: 30px 80px
    }
}

@media(max-width: 1199px) {
    .tp_login_main {
        padding: 50px 40px 42px;
        margin-right: 0;
    }
}

@media(max-width: 991px) {
    .tp_login_auth h1 {
        margin: 24px 0 6px;
        font-size: 22px;
    }

    .tp_login_btn {
        margin: 20px 0 0;
    }

    .tp_login_btn>p {
        margin: 12px 0 0;
    }
}

@media(max-width: 768px) {
    .tp_login_flex {
        display: block;
    }

    .tp_login_vector {
        margin-right: 0;
    }

    .tp_login_main {
        max-width: 100%;
    }

    .tp_social_btn a.tp_btn i::after {
        left: 97px;
    }
}

@media(max-width: 675px) {
    .tp_social_btn a.tp_btn i::after {
        left: 70px;
    }
}

@media(max-width: 575px) {
    .tp_login_main {
        padding: 40px 20px 32px;
    }

    .tp_login_section {
        padding: 30px 10px;
    }
}

@media(max-width: 480px) {
    .tp_social_btn button::after {
        left: 60px;
    }

    .tp_success_msg,
    .tp_error_msg {
        right: 20px;
    }

    .tp_login_auth h1 {
        font-size: 18px;
    }

    .tp_login_auth h5 {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .temp_label {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .temp_input_field {
        height: 45px;
        font-size: 15px;
    }

    .temp_input_field {
        padding: 0 40px 0 15px;
    }

    .temp_input img {
        right: 15px;
    }

    .tp_login_btn .temp_btn {
        min-height: 45px;
    }

    .temp_input_box.temp_input_flex {
        grid-gap: 5px;
        margin-top: 0px;
    }
}

@media(max-width: 450px) {
    .tp_social_btn button {
        padding: 0 20px;
    }
}

@media(max-width: 420px) {
    .tp_social_btn button::after {
        left: 50px;
    }
}

@media(max-width: 375px) {
    .tp_social_btn button {
        padding: 0 10px;
    }

    .tp_social_btn button {
        justify-content: space-around;
    }

    .tp_social_btn button::after {
        display: none;
    }

    .temp_input_box input {
        height: 40px;
        padding: 0 10px;
    }
}

/* responsive css */