/*--------------------- Copyright (c) 2023 ----------------------- 
[Master Stylesheet] 
Project: PLR Power
-------------------------------------------------------------------*/
/*--------------- Global Style ---------------*/
:root {
    --plr-global-color: #5e5e5e;
    --plr-body-bg: #eff5fc;
    --plr-primary: #7546ea;
    --plr-white-color: #ffffff;
    --plr-green-color: #8cdf5f;
    --plr-title-color: #141a33;
    --plr-border-color: #e4e4e4;
}
body {
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5;
	color: var(--plr-global-color);
	background: var(--plr-body-bg);
    margin: 0;
    padding: 0;
	-webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--plr-border-color);
}
::-webkit-scrollbar-thumb {
    background: var(--plr-title-color);
    width: 4px;
}
*{
	outline: none !important;
}
*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a, a:hover, a:focus{
	color: var(--plr-title-color);
	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;
}
a:hover {
    color: var(--plr-primary);
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Lexend', sans-serif;
	margin:0;
	word-break: break-word;
    color: var(--plr-title-color);
}
img {
	max-width: 100%;
}
ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
p {
  margin: 0px;
}
input:-webkit-autofill {
    background: transparent !important;
    -webkit-box-shadow: 0 0 0 50px #ffffff inset;
    -webkit-text-fill-color: #53627a;
}
/*--------------- Button Style ---------------*/
.plr_btn,
.plr_btn:focus {
    min-width: 170px;
    padding: 0 30px;
    min-height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    border: 0;
    text-transform: capitalize;
    border-radius: 50px 50px 0 50px;
    color: var(--plr-white-color);
    background: var(--plr-primary);
    background: linear-gradient(50deg, #ff67ff, #7546ea 51% ) var(--x, 0)/ 200%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.plr_btn:hover {
    --x: 100%;
	color: #ffffff;
}
/*--------------- Auth Page Style ---------------*/
.plr_auth_wrapper {
    background-color: #f1ecff;
    background-image: url(../images/banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 15px;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.plr_auth_container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    height: 100vh;
}
.plr_auth_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    grid-gap: 0px;
    max-width: 1180px;
    position: relative;
    z-index: 1;
    background: var(--plr-white-color);
    padding: 30px 30px;
    border-radius: 20px;
    align-items: center;
    margin: 20px 0;
}
.plr_auth_row > div {
    width: calc(50% - 0px);
}
.plr_auth_image img {
    animation: 6s installation infinite alternate;
}
.plr_welcom_title span {
    color: var(--plr-primary);
    display: inline-block;
}
.plr_auth_logo {
    margin: 0 0 10px;
}
.plr_auth_logo img {
    max-height: 50px;
}
.plr_welcom_title {
    margin: 0 0 30px;
}
.plr_welcom_title h1 {
    font-size: 32px;
    font-weight: 800;
}
.plr_input_wrap {
    position: relative;
    margin: 0 0 30px;
}
.plr_input_wrap label {
    font-size: 12px;
    margin: 0;
    display: inline-block;
    position: absolute;
    top: -10px;
    z-index: 1;
    left: 20px;
    background: var(--plr-white-color);
    padding: 0px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.plr_input_wrap input {
    width: 100%;
    padding: 0px 50px 0px 20px;
    font-weight: 400;
    font-size: 14px;
    background: var(--plr-white-color);
    height: 60px;
    transition: 0.3s;
    color: var(--plr-global-color);
    border-radius: 10px;
    border: 1px solid var(--plr-border-color);
}
.plr_input_wrap input:focus {
    border-color: var(--plr-primary);
    box-shadow: 0 10px 10px 0 rgb(78 93 254 / 6%);
}
.plr_input_has_icon {
    position: relative;
}
.plr_input_has_icon img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    height: 16px;
    width: 16px;
}

.plr_auth_row > div.plr_auth_title {
    width: 100%;
    text-align: center;
    margin: 30px 0 0px;
}
.plr_auth_title h4 {
    color: rgb(255 103 255 / 100%);
    background: rgb(255 103 255 / 10%);
    border: 1px solid rgb(255 103 255 / 15%);
    text-transform: capitalize;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
}
.plr_auth_form_row {
    padding: 40px 50px;
    box-shadow: 0 0 30px rgb(0 0 0 / 6%);
    border-radius: 20px;
}

/* Check */
.plr_remember {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 20px;
}
.plr_login-form .plr_remember {
    margin-bottom: 30px;
    justify-content: space-between;
}
.plr_checkbox label {
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
}
.plr_checkbox {
    position: relative;
}
.plr_checkbox input {
    position: absolute;
    left: 0;
    opacity: 0;
    width: 18px;
    height: 18px;
    margin-top: 4px;
    z-index: 1;
    cursor: pointer;
}
.plr_checkbox label::before, .plr_checkbox span::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 3px;
    margin-right: 8px;
    flex: none;
    background-color: var(--plr-white-color);
    border: 2px solid var(--plr-border-color);
    transition: all 0.3s;
    display: inline-block;
    vertical-align: middle;
}
.plr_checkbox>label::after, .plr_checkbox>span::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 4px;
    width: 10px;
    height: 5px;
    border-left: 2px solid var(--plr-white-color);
    border-bottom: 2px solid var(--plr-white-color);
    -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;
}
.plr_checkbox>input:checked~label::after, .plr_checkbox>input:checked~span::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
}
.plr_checkbox>input:checked~label::before, .plr_checkbox>input:checked~span::before {
    background: var(--plr-primary);
    border: 1px solid var(--plr-primary);
}
.plr-support-info {
    margin: 20px 0 0;
}
@keyframes installation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
}
/* Alert Success MSG */
.plr_notification {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}
.plr_success_msg {
    position: fixed;
    right: 20px;
    top: 20px;
    border-radius: 6px;
    background: var(--plr-white-color);
    padding: 20px 30px;
    z-index: 999;
    border: solid 1px #e8f4fc;
    box-shadow: 0px 0px 45px 15px rgb(16 40 132 / 10%);
    opacity: 1 !important;
    visibility: visible !important;
    -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(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.plr_success_msg.plr_toster_open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.plr_close_icon {
    position: absolute;
    top: 0px;
    right: 20px;
}
.plr_close_icon span {
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
}
.plr_success_flex {
    display: flex;
	align-items: center;
}
.plr_happy_img {
    width: 110px;
}
.plr_yeah {
    width: 210px;
}
.plr_yeah h5 {
    color: var(--plr-green-color);
    font-weight: 600;
    font-size: 18px;
}
.plr_yeah p {
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
}
.plr_error_msg {
    position: fixed;
    right: 20px;
    top: 20px;
    border-radius: 6px;
    background: var(--plr-white-color);
    padding: 20px 30px;
    z-index: 999;
    border: solid 1px #e8f4fc;
    box-shadow: 0px 0px 45px 15px rgb(16 40 132 / 10%);
    opacity: 1 !important;
    visibility: visible !important;
    -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(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.plr_error_msg.plr_toster_open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.plr_error_msg .plr_yeah h5 {
    color: #f4476c;
    font-weight: 600;
    font-size: 18px;
}
.plr_hide {
	display: none;
}
/* Alert Error MSG */
.plr_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(--plr-white-color);
    animation: zoom 0.1s linear;
}
.plr_response.mt_error {
    background: #ff3a3a;
    color: var(--plr-white-color);
	display: block;
}
.plr_response.mt_success {
    background: #47aa4b;
    color: var(--plr-white-color);
	display: block;
}
/* 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;
}
p.plr-support-info span {
    display: block;
    padding-top: 10px;
}
p#register-password {
    padding-bottom: 20px;
}
/* Responsive CSS */
@media(max-width: 1199px){
    .plr_auth_logo {
        margin: 0;
    }
    .plr_welcom_title h1 {
        font-size: 26px;
    }
}
@media(max-width: 991px){
    .plr_auth_form_row {
        padding: 30px 30px;
        box-shadow: 0 0 30px rgb(0 0 0 / 6%);
    }
}
@media(max-width: 767px){
    .plr_auth_row > div {
        width: 100%;
    }
    .plr_auth_row {
        flex-direction: column-reverse;
    }
    .plr_auth_row > div.plr_auth_title {
        margin: 0 0 20px;
    }
}
@media(max-width: 575px){
    .plr_auth_container {
        padding: 30px 0px;
    }
    .plr_auth_title h4 {
        font-size: 12px;
        padding: 10px 15px;
    }
    .plr_auth_form_row {
        padding: 0;
        box-shadow: none;
    }
    .plr_auth_logo img {
        max-height: 40px;
    }
    .plr_welcom_title h1 {
        font-size: 24px;
    }
}