/*--------------------- Copyright (c) 2024 ----------------------- 
[Master Authentication Stylesheet] 
Project: WebWise
Version: 1.0.0
-------------------------------------------------------------------*/
:root {
    --webwise-global-font: 'Inter', sans-serif;
    --webwise-global-size: 14px;
    --webwise-global-color: #7d889c;
    --webwise-primary: #29d287;
    --webwise-title-color: #2f2f3d;
    --webwise-border-color: #cee9de;
    --webwise-whiter: #ffffff;
    --webwise-input-bg: #f3f7f5;
    --webwise-input-color: #7d889c;
    --webwise-body-bg: #e3efea;
    --webwise-transition: all 0.5s;
}
/*========== Comman CSS  ==========*/
body {
    font-family: var(--webwise-global-font);
    font-size: var(--webwise-global-size);
    color: var(--webwise-global-color);
    font-weight: 500;
    line-height: 1.6;
    background: var(--webwise-body-bg);
    margin: 0;
}
a {
    color: var(--webwise-global-color);
    transition: 0.3s;
    text-decoration: none;
}
a:hover {
    color: var(--webwise-primary);
    text-decoration: none;
}
*,
 ::after,
 ::before {
    box-sizing: border-box;
}
a,
a:hover {
    -webkit-transition: var(--webwise-transition);
    -moz-transition: var(--webwise-transition);
    -ms-transition: var(--webwise-transition);
    -o-transition: var(--webwise-transition);
    transition: var(--webwise-transition);
}
/*== Button CSS  ==*/
.webwise-btn {
    display: inline-block;
    min-width: 170px;
    border: none;
    background: var(--wpa-primary-color);
    color: var(--webwise-whiter);
    outline: none;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
    padding: 18px 20px;
}
.webwise-btn.webwise-btn-white {
    background: var(--webwise-whiter);
}
.webwise-btn:hover {
    background: var(--wpa-secondary-color);
    color: var(--webwise-whiter);
    transform: translateY(-3px);
}
.webwise-btn,
.webwise-btn:hover {
    -webkit-transition: var(--webwise-transition);
    -moz-transition: var(--webwise-transition);
    -ms-transition: var(--webwise-transition);
    -o-transition: var(--webwise-transition);
    transition: var(--webwise-transition);
}
.webwise-btn:focus,
img:focus {
    outline: none;
}
.webwise-btn span {
    margin-left: 10px;
}
.webwise-btn.webwise-disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .3;
}
/*== Input CSS  ==*/
input,
select {
    width: 100%;
    padding: 0px 20px;
    outline: none;
    font-weight: 400;
    font-size: 14px;
    background: var(--webwise-input-bg);
    height: 50px;
    transition: 0.3s;
    color: var(--webwise-input-color);
    border-radius: 10px;
    border: none;
    box-shadow: 0 8px 30px rgba(47, 87, 239,0.05);
}
textarea {
    width: 100%;
    padding: 20px;
    outline: none;
    background: var(--webwise-input-bg);
    border: none;
    border-radius: 10px;
    resize: none;
    color: var(--webwise-input-color);
}
select {
    cursor: pointer;
    -moz-appearance: none;
    appearance: none;
}
select option {
    color: var(--webwise-input-bg);
}
::placeholder {
    color: var(--webwise-input-color);
    opacity: .6;
    text-transform: capitalize;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0;
    margin: 0;
}
li {
    list-style: none;
}
/*========== Auth Page CSS  ==========*/
.webwise-auth-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    overflow: hidden auto;
    display: flex;
    justify-content: center;
    background: var(--webwise-body-bg);
    overflow: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.webwise-auth-wrapper:before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at center, #69f7b8 0%, #6cfdbd 0%, rgba(0, 95, 252, 0) 68%, rgba(0, 95, 252, 0) 100%);
    opacity: .3;
}
.webwise-auth-wrapper:after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 100%;
    bottom: 40px;
    right: 0;
    opacity: .2;
    background: radial-gradient(ellipse at center, #29d287 0%, #90e5bf 0%, rgba(0, 95, 252, 0) 68%, rgba(0, 95, 252, 0) 100%);
}
.webwise-auth-wrapper .webwise-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
    height: 100%;
    overflow: auto;
}
.webwise-auth-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    grid-gap: 0px;
    max-width: 1120px;
    position: relative;
    z-index: 1;
    background: var(--webwise-whiter);
    padding: 0;
    border-radius: 20px;
    border: 2px solid rgb(255 255 255 / 78%);
    background: rgb(255 255 255 / 45%);
}
.webwise-auth-img-wrap {
    width: calc(100% - 50%);
    background: var(--webwise-whiter);
    border-radius: 20px 0 0 20px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}
.webwise-auth-img-wrap img {
    animation: 6s installation infinite alternate;
}
@keyframes installation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
}
.webwise-auth-content {
    max-width: 50%;
    width: 100%;
}
.webwise-auth-img img {
    max-height: 380px;
}
.webwise-auth-form {
    padding: 50px 50px;
}
.webwise-auth-form>h1 {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--webwise-title-color);
    line-height: 1.2;
}
.webwise-auth-form>h1 span {
    display: inline-block;
    margin-top: 5px;
    color: var(--webwise-primary);
}
.webwise-input-box {
    margin: 0 0 30px;
}
.webwise-auth-form>p {
    margin: 0 0 20px;
    font-size: 15px;
    font-weight: 500;
}
.webwise-input-wrapper {
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}
.webwise-input-has-icon {
    position: relative;
}
.webwise-input-wrapper label {
    color: var(--webwise-global-color);
    transition: 0.1s;
    margin: 0 0 5px;
    display: block;
}
.webwise-input-wrapper.webwise-input-value label {
    font-weight: 600;
}
.webwise-input-wrapper.webwise-input-value .webwise-auth-icon svg {
    fill: var(--webwise-primary);
}
.webwise-input-wrapper input,
.webwise-input-wrapper select {
    padding: 10px 50px 10px 20px;
    min-height: 62px;
    border: 1px solid var(--webwise-border-color);
}
.webwise-input-value input {
    /* border-color: var(--webwise-primary); */
}
.webwise-input-wrapper input:focus {
    padding-left: 25px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.06);
}
.webwise-input-wrapper select {
    padding-left: 15px;
}
.webwise-input-wrapper input.webwise-input-error {
    border-color: #cf2b00;
}
.webwise-input-wrapper .webwise-auth-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.webwise-input-wrapper .webwise-auth-icon svg {
    fill: #b8dbcc;
}
.webwise-input-wrapper span a {
    margin-top: 6px;
    display: block;
}
.webwise-remember {
    display: flex;
    align-items: center;
}
.webwise-auth-form .webwise-remember {
    margin-bottom: 30px;
    justify-content: space-between;
    grid-gap: 10px;
}
.webwise-checkbox label {
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
}
.webwise-checkbox {
    position: relative;
}
.webwise-checkbox input {
    position: absolute;
    left: 0;
    opacity: 0;
    width: 18px;
    height: 18px;
    margin-top: 4px;
    z-index: 1;
    cursor: pointer;
}
.webwise-checkbox label::before,
.webwise-checkbox span::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 3px;
    margin-right: 8px;
    flex: none;
    background-color: var(--webwise-input-bg);
    border: 2px solid var(--webwise-border-color);
    transition: all 0.3s;
    display: inline-block;
    vertical-align: middle;
}
.webwise-checkbox>label::after,
.webwise-checkbox>span::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 4px;
    width: 10px;
    height: 5px;
    border-left: 2px solid var(--webwise-whiter);
    border-bottom: 2px solid var(--webwise-whiter);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -moz-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(1);
    opacity: 0;
}
.webwise-checkbox>input:checked~label::after,
.webwise-checkbox>input:checked~span::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
}
.webwise-checkbox>input:checked~label::before,
.webwise-checkbox>input:checked~span::before {
    background: var(--webwise-primary);
    border: 1px solid var(--webwise-primary);
}
.webwise-auth-logo {
    margin: 0 0 10px;
}
.webwise-auth-logo img {
    max-height: 100px;
}
.webwise-show-password {
    cursor: pointer;
}
/* Auth Shapes */
.webwise-auth-shaps li {
    position: absolute;
}
.webwise-auth-shaps li:first-child {
    left: 2%;
    top: 40px;
    animation: zoom-in-zoom-out 6s ease-out infinite;
}
.webwise-auth-shaps li:nth-child(2) {
    left: 10%;
    animation: zoom-in-zoom-out 4s ease-out infinite;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
}
.webwise-auth-shaps li:nth-child(3) {
    right: 15%;
    animation: rotationReverse 3s ease-out infinite;
    bottom: 10px;
}
.webwise-auth-shaps li:nth-child(4) {
    right: 6%;
    animation: rotationReverse 3s ease-out infinite;
    top: 150px;
}
.webwise-auth-shaps li:nth-child(5) {
    left: 60px;
    animation: zoom-in-zoom-out 4s ease-out infinite;
    bottom: 40px;
}
.webwise-auth-shaps {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    overflow: hidden;
}
body:not(.site-loaded) .webwise-auth-shaps li:nth-child(2),
body:not(.site-loaded) .webwise-auth-shaps li:first-child,
body:not(.site-loaded) .webwise-auth-shaps li:nth-child(3),
body:not(.site-loaded) .webwise-auth-shaps li:nth-child(5) {
    left: -100%;
}
body:not(.site-loaded) .webwise-auth-shaps li:nth-child(4),
body:not(.site-loaded) .webwise-auth-shaps li:nth-child(6),
body:not(.site-loaded) .webwise-auth-shaps li:first-child,
body:not(.site-loaded) .webwise-auth-shaps li:nth-child(7),
body:not(.site-loaded) .webwise-auth-shaps li:nth-child(8) {
    right: -100%;
}

body:not(.site-loaded) .webwise-auth-shaps li:nth-child(2),
body:not(.site-loaded) .webwise-auth-shaps li:first-child,
body:not(.site-loaded) .webwise-auth-shaps li:nth-child(3),
body:not(.site-loaded) .webwise-auth-shaps li:nth-child(5),
body:not(.site-loaded) .webwise-auth-shaps li:nth-child(4),
body:not(.site-loaded) .webwise-auth-shaps li:nth-child(6),
body:not(.site-loaded) .webwise-auth-shaps li:first-child,
body:not(.site-loaded) .webwise-auth-shaps li:nth-child(7),
body:not(.site-loaded) .webwise-auth-shaps li:nth-child(8),
.webwise-auth-shaps li:nth-child(2),
.webwise-auth-shaps li:first-child,
.webwise-auth-shaps li:nth-child(3),
.webwise-auth-shaps li:nth-child(5),
.webwise-auth-shaps li:nth-child(4),
.webwise-auth-shaps li:nth-child(6),
.webwise-auth-shaps li:first-child,
.webwise-auth-shaps li:nth-child(7),
.webwise-auth-shaps li:nth-child(8)  {
    -webkit-transition: var(--webwise-transition);
    -moz-transition: var(--webwise-transition);
    -ms-transition: var(--webwise-transition);
    -o-transition: var(--webwise-transition);
    transition: var(--webwise-transition);
}
 
@keyframes rotationReverse {
    0% {
        -webkit-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-5px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-5px) rotate(0deg);
        transform: rotate(0deg) translate(-5px) rotate(0deg);
        transition: 1s ease-in-out;
    }
    100% {
        -webkit-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        -moz-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        -ms-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        -o-transform: rotate(-360deg) translate(-5px) rotate(360deg);
        transform: rotate(-360deg) translate(-5px) rotate(360deg);
        transition: 1s ease-in-out;
    }
}
@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(.8, .8);
    }
    50% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(.8, .8);
    }
}
/* Divider  */
.webwise-divider {
    position: relative;
    margin: 30px 0 20px;
    text-align: center;
}
.webwise-divider:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    height: 1px;
    background: var(--webwise-border-color);
}
.webwise-divider span {
    position: relative;
    margin: auto;
    z-index: 1;
    background: #f2f0ff;
    padding: 0 15px;
    display: inline-block;
}
/* Alert CSS */
.webwise-alert-wrap {
    position: fixed;
    right: 50px;
    top: 50px;
    max-width: 450px;
    z-index: 9991;
    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);
}
.webwise-alert-wrap.error,
.webwise-alert-wrap.success {
    opacity: 1;
    visibility: visible;
}
.webwise-alert-wrap>p {
    background-color: var(--webwise-whiter);
    box-shadow: 0px 0px 30px 0px rgba(18, 224, 215, 0.1);
    border-radius: 5px;
    padding: 15px 20px;
    margin: 0;
    color: var(--webwise-global-font);
    font-size: 16px;
    position: relative;
    padding-left: 80px;
    -webkit-animation: alertanim 0.3s;
    -moz-animation: alertanim 0.3s;
    animation: alertanim 0.3s;
}
.webwise-alert-wrap.error>p {
    box-shadow: 0px 0px 30px 0px rgba(18, 224, 215, 0.1), inset 0px -5px 0px #cf2b00;
}
.webwise-alert-wrap>p::before {
    content: "Yeay!";
    font-size: 16px;
    font-weight: bold;
    display: block;
    color: var(--webwise-title-color);
}
.webwise-alert-wrap>p::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.webwise-alert-wrap.error>p::before {
    content: "Duhh!";
}
.webwise-alert-wrap.error>p::after {
    background-image: url(../images/sad.png);
}
.webwise-alert-wrap.success>p::after {
    background-image: url(../images/happy.png);
}
.webwise-alert-wrap.success>p {
    box-shadow: 0px 0px 30px 0px rgba(18, 224, 215, 0.1), inset 0px -5px 0px #54cc7c;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.webwise-link {
    font-weight: 600;
    text-align: center;
    margin: 0;
}
.webwise-link a {
    color: var(--webwise-primary);
    text-transform: capitalize;
    display: inline-block;
}
/* Preloader  */
.webwise-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    background: rgb(255 255 255 / 98%);
}
.webwise-loader.show {
    display: flex;
}
.webwise-loader img {
    max-height: 180px;
}
/**/
.webwise-has-col-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0px 30px;
    margin: 0;
}
.webwise-auth-img-wrap h3 {
    margin: 0 0 20px;
    color: var(--webwise-title-color);
    font-size: 22px;
    font-weight: 800;
    padding: 10px 30px 10px;
    text-align: center;
    background: linear-gradient(to right,var(--wpa-primary-color) 0%, #1dff66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body .wbwise-auth-note {
    margin: 20px 0 0;
    font-weight: 400;
}
body .wbwise-auth-note a {
    color: var(--wpa-primary-color);
}

/* Responsive start */
@media screen and (max-width: 1499px) {
   .webwise-auth-form>h1 {
        font-size: 28px;
    }
    .webwise-auth-row {
        max-width: 1040px;
    }
    .webwise-auth-shaps li img {
        max-height: 60px;
    }
    .webwise-auth-shaps li:nth-child(2) {
        left: 6%;
    }
    .webwise-auth-shaps li:nth-child(3) {
        right: 6%;
    }
    .webwise-auth-shaps li:nth-child(4) {
        right: 2%;
        top: 120px;
    }
}
@media screen and (max-width: 1199px) {
   
    .webwise-auth-shaps {
        display: none;
    }
}
@media screen and (max-width: 991px) {
    .webwise-auth-img {
        text-align: center;
    }
    .webwise-auth-row {
        flex-direction: column-reverse;
    }
    .webwise-auth-img-wrap,
    .webwise-auth-content {
        width: 100%;
        max-width: 100%;
    }
    .webwise-auth-img-wrap {
        border-radius: 0px 0px 10px 10px;
    }
}

@media screen and (max-width: 575px) {
    .webwise-auth-form .webwise-remember {
        display: block;
    }
    .webwise-auth-form {
        padding: 40px 30px;
    }
    .webwise-auth-form>h1 {
        font-size: 24px;
        word-break: break-all;
    }
    .webwise-has-col-two {
        grid-template-columns: repeat(1, 1fr);
    }
}