/*
========================
GOBAL CSS START
========================
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    color: var(--BlackColor);
}

:root {
    --selection-bg: #0078d7;
    --selection-color: #fff;
    --SecondaryColor: #4370F5;
    --BlackColor: #000;
    --WhiteColor: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

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

button,
a {
    cursor: pointer;
    transition: 0.3s;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-webkit-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-moz-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Onboarding page  */

.onboarding-wrapper {
    padding-top: 37px;
    padding-bottom: 20px;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.onboarding-wrapper img {
    max-width: 250px;
}

/*========== sign in page ======= */

.sign-header-wrapper {
    padding-top: 110px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    position: relative;
    background: url(../images/hero-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
}

.sign-header-wrapper img {
    width: 210px;
}

.header-ractnale1 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 160px;
}

.header-ractnale1 img {
    width: 100%;
}

.header-ractnale2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    z-index: 6;
}

.header-ractnale2 img {
    width: 100%;
}

/* sign area style start  */

.sing-wrapper {
    padding-top: 50px;
    padding-bottom: 20px;
    background: #fff;
    margin-top: -40px;
    z-index: 5;
    position: relative;
    border-radius: 30px 30px 0 0;
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    padding-inline: 15px;
}

.sign-in-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    padding: 45px 78px;
    background: rgba(217, 217, 217, 0.10);
    box-shadow: 40.067px -40.067px 40.067px 0 rgba(165, 165, 165, 0.10) inset, -40.067px 40.067px 40.067px 0 rgba(255, 255, 255, 0.10) inset;
    backdrop-filter: blur(8.013333320617676px);
    border-radius: 10px;
}

.single-input {
    position: relative;
}

.single-input input {
    width: 100%;
    padding: 14px 42px 14px 12px;
    font-size: 16px;
    border-radius: 5px;
    outline: none;
    height: 55px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #FFF;
}

/* DEFAULT label (center-left) */

.single-input label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    transition: 0.25s ease;
    color: rgba(0, 0, 0, 0.32);
}

/* label when active (TOP CENTER-LEFT) */

.single-input.active label {
    top: 14px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.32);
}

/* show / hide button */

.show-hide {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: none;
    color: rgba(0, 0, 0, 0.72);
}

.single-input.active input {
    padding-top: 26px;
    padding-bottom: 5px;
}

.sign-in-form h2 {
    font-size: 30px;
    font-weight: 500;
}

.forget-pass a {
    color: rgba(0, 0, 0, 0.72);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.action-btn {
    display: flex;
    min-height: 45px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 1px solid #000;
    background: var(--BlackColor);
    box-shadow: -3px -3px 0 0 #0F98E4, 3px 3px 0 0 #7EF4F4;
    cursor: pointer;
    transition: 0.3s;
}

.action-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.sign-in-form>button {
    margin-top: 14px;
}

.sign-or-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 14px;
    gap: 24px;
}

.sign-or-card p {
    color: rgba(0, 0, 0, 0.64);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.login-external {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.login-external button {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
}

.login-external button img {
    width: 30px;
}

.dont-account {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    padding-top: 15px;
    margin-top: auto;
}

.dont-account p {
    color: rgba(0, 0, 0, 0.64);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.dont-account a {
    text-decoration: underline;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.32px;
}

.dont-account a:hover {
    color: var(--SecondaryColor);
}


.sing-wrapper.mt-lg-0 {
	height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
}


.logo-sign {
    position: absolute;
    left: 21px;
    top: 24px;
    max-width: 313px;
    z-index: 10;
}




@media screen and (min-width: 768px) and (max-width: 991px) {
    .onboarding-wrapper img {
        max-width: 200px;
    }
    .sign-header-wrapper {
        padding-top: 100px;
        padding-bottom: 90px;
        min-height: 310px;
    }
    .login-external button {
        width: 70px;
        height: 70px;
    }
    .login-external button img {
        width: 27px;
    }
    .container {
        padding-inline: 0;
    }

    .sign-in-form {
        padding: unset;
        background: unset;
        box-shadow: unset;
        backdrop-filter: unset;
    }
    .sing-wrapper.mt-lg-0 {
        height: fit-content;
    }
}

@media screen and (max-width: 767px) {
    .container {
        padding-inline: 0;
        max-width: 100%;
    }
    .onboarding-wrapper img {
        max-width: 172px;
    }
    .sign-header-wrapper {
        padding-top: 59px;
        padding-bottom: 65px;
        min-height: 253px;
        padding-inline: 15px;
    }
    .login-external button {
        width: 60px;
        height: 60px;
    }
    .login-external button img {
        width: 27px;
    }
    .sing-wrapper {
        margin-top: 0;
        border-radius: 0;
        padding-top: 45px;
        min-height: calc(100dvh - 253px);
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        padding-inline: 16px;
        border-radius: 20px 20px 0 0;
    }
    .header-ractnale2 {
        width: 69px;
    }
    .header-ractnale1 {
        width: 132px;
    }
    .sing-area {
        margin-top: -28px;
        border-radius: 20px 20px 0 0;
        background: #fff;
        z-index: 5;
        position: relative;
        padding-bottom: 15px;
    }
    .sign-header-wrapper img {
        width: 173px;
    }
    .sign-in-form h2 {
        font-size: 24px;
    }
    .forget-pass a {
        font-size: 14px;
    }
    .sign-in-form {
        flex: 1;
    }

    .sign-in-form {
        padding: unset;
        background: unset;
        box-shadow: unset;
        backdrop-filter: unset;
    }
    .sing-wrapper.mt-lg-0 {
        height: fit-content;
    }
}