@charset "UTF-8";
/*------------------------------------------------------------------
Copyright (c) 2024
[Master Auth Stylesheet]
-------------------------------------------------------------------*/
/*--------------- Global Style ---------------*/
:root {
    --pixaguru-global-color: #6a87a8;
    --pixaguru-body-bg: #eff5fc;
    --pixaguru-primary: #ff5887;
    --pixaguru-white-color: #ffffff;
    --pixaguru-green-color: #8cdf5f;
    --pixaguru-title-color: #2c4767;
    --pixaguru-border-color: #edf3ff;
    --pixaguru-gradient: linear-gradient(0deg, #ff3b72 0%, #ff779c 100%);
}
body {
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	color: var(--pixaguru-global-color);
	background: var(--pixaguru-body-bg);
    margin: 0;
    padding: 0;
	-webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--pixaguru-border-color);
}
::-webkit-scrollbar-thumb {
    background: var(--pixaguru-primary);
    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: #91aac8;
	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(--pixaguru-primary);
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Nunito', sans-serif;
	margin:0;
	word-break: break-word;
    color: var(--pixaguru-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: var(--pixaguru-global-color);
}
/*--------------- Button Style ---------------*/
.pg-btn,
.pg-btn:focus {
    min-width: 170px;
    padding: 15px 30px;
    min-height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    border: 0;
    text-transform: capitalize;
    border-radius: 5px;
    color: var(--pixaguru-white-color);
    background: var(--pixaguru-primary);
    background: var(--pixaguru-gradient);
    filter: drop-shadow(0px 8px 20px rgba(255,59,114,0.2));
}
.pg-btn:hover {
    --x: 100%;
	color: var(--pixaguru-white-color);
    transform: translate(0, -6px);
}
.pg-btn,
.pg-btn:focus,
.pg-btn:hover {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
/*--------------- Auth Page Style ---------------*/
.pg-auth-wrapper {
    background: #F2E2FF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.pg-auth-wrapper:before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(../images/auth/auth-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /* -webkit-animation: mover 1.5s infinite  alternate;
    animation: mover 1.5s infinite  alternate; */
}
.pg-auth-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    height: 100vh;
    overflow: auto;
    position: relative;
    z-index: 1;
}
.pg-auth-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    grid-gap: 30px;
    align-items: center;
    max-width: 1200px;
    position: relative;
    z-index: 1;
    border: 2px solid rgb(255 255 255 / 78%);
    background: rgb(255 255 255 / 45%);
    border-radius: 20px;
    padding: 40px 40px;
}
/* .pg-auth-row:before {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--pixaguru-primary);
    height: 85%;
    border-radius: 5px;
    background: var(--pixaguru-gradient);
} */
.pg-auth-form-box {
    width: 50%;
}
.pg-auth-form-row-inner {
    padding: 60px 50px;
    position: relative;
    width: calc(50% - 30px);
    z-index: 1;
    background: var(--pixaguru-white-color);
    border-radius: 15px;
}
.pg-auth-form-wrapper {
    width: 100%;
}
.pg-auth-logo {
    margin: 0 0 13px;
    /* text-align: center; */
}
.pg-auth-logo img {
    max-height: 50px;
}
.pg-welcome-title {
    margin: 0 0 23px;
    /* text-align: center; */
}
.pg-welcome-title h2 {
    font-size: 28px;
    font-weight: 600;
}
/* Input */
.pg-input-wrap {
    position: relative;
    margin: 0 0 20px;
}
.pg-input-wrap label {
    position: absolute;
    top: 25px;
    left: 65px;
    color: #bdc9d7;
    transition: 0.1s;
    cursor: text;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
}
.pg-input-wrap.pg-input-value label {
    top: 15px;
}
.pg-input-wrap input {
    width: 100%;
    padding: 16px 20px 0px 65px;
    font-size: 15px;
    background: transparent;
    height: 68px;
    font-weight: 600;
    transition: 0.3s;
    color: #5b7899;
    border-radius: 5px;
    border: 1px solid var(--pixaguru-border-color);
}
.pg-input-wrap input:focus {
    box-shadow: 0px 8px 16px rgba(0,0,0,0.06);
}
.pg-input-has-icon {
    position: relative;
}
.pg-input-has-icon img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 20px;
}
.pg-btn-wrap .pg-btn {
    width: 100%;
}

/* Check */
.pg-remember {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
    flex-wrap: wrap;
    margin: -2px 0 29px;
    font-size: 13px;
}
.pg-login-form .pg-remember {
    margin-bottom: 30px;
    justify-content: space-between;
}
.pg-checkbox label {
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
    color: #91aac8;
}
.pg-checkbox {
    position: relative;
}
.pg-checkbox input {
    position: absolute;
    left: 0;
    opacity: 0;
    width: 16px;
    height: 16px;
    margin: 0;
    z-index: 1;
    cursor: pointer;
}
.pg-checkbox label::before, .pg-checkbox span::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 3px;
    margin-right: 8px;
    flex: none;
    background-color: #ebeff3;
    transition: all 0.3s;
    display: inline-block;
    vertical-align: middle;
}
.pg-checkbox>label::after, .pg-checkbox>span::after {
    content: "";
    position: absolute;
    top: 4.5px;
    left: 3px;
    width: 10px;
    height: 5px;
    border-left: 2px solid var(--pixaguru-white-color);
    border-bottom: 2px solid var(--pixaguru-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;
}
.pg-checkbox>input:checked~label::after, .pg-checkbox>input:checked~span::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
}
.pg-checkbox>input:checked~label::before, .pg-checkbox>input:checked~span::before {
    background: var(--pixaguru-primary);
    border: 1px solid var(--pixaguru-primary);
}
.pg-support-info {
    margin: 20px 0 0;
}

/* Alert Style */
.toaster{
    width: auto !important;
    max-width: 50%;
}
.toaster .alert{
    border-radius: 5px;
    border: none;
    -webkit-animation: alert_anim 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-animation: alert_anim 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-animation: alert_anim 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation: alert_anim 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    margin-bottom: 0;
    position: relative;
    margin-bottom: 10px;
    height: 40px;
    padding: 10px 20px;
}
@-webkit-keyframes alert_anim{
    0%{-webkit-transform: translateY(-50px);}
    100%{-webkit-transform: translateY(0px);}
}
@-moz-keyframes alert_anim{
    0%{-moz-transform: translateY(-50px);}
    100%{-moz-transform: translateY(0px);}
}
@keyframes alert_anim{
    0%{transform: translateY(-50px);}
    100%{transform: translateY(0px);}
}
.alert-danger {
    color: var(--pixaguru-white-color);
    background-color: #F44336;
}
.alert-success {
    color: var(--pixaguru-white-color);
    background-color: #4CAF50;
}
.alert button.close{
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    outline: none;
    opacity: 0.8;
    font-weight: 100;
    line-height: 0px;
    position: absolute;
    top: 45%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
.alert button.close span:first-child {
    font-size: 20px;
    color: var(--pixaguru-white-color);
    display: inline-block;
    position: absolute;
    right: -8px;
    top: 3px;
}
/**/
.pg-auth-note {
    margin: 20px 0 0;
}
.pg-auth-note a {
    font-weight: 600;
}

.zoom-in-zoom-out {
    animation: zoom-in-zoom-out 5s ease-out infinite;
}
  
@keyframes zoom-in-zoom-out {
    0% {
      transform: scale(.96, .96);
    }
    50% {
      transform: scale(1, 1);
    }
    100% {
      transform: scale(.96, .96);
    }
}

@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.pg-payment-from-wrap .container {
    position: relative;
}


/* Responsive CSS */
@media(max-width: 991px){
    .pg-auth-form-box {
        width: 100%;
        text-align: center;
    }
    .pg-auth-form-row-inner {
        width: 100%;
    }
    .pg-auth-row {
        flex-direction: column-reverse;
    }
}
@media(max-width: 767px){
    .px-auth-form-row-inner {
        padding: 40px 20px;
    }
}
@media(max-width: 575px){
    .pg-auth-row {
        padding: 20px;
    }
    .pg-auth-form-row-inner {
        padding: 30px 20px;
    }
    .pg-input-wrap label {
        left: 50px;
    }
    .pg-input-has-icon img {
        left: 10px;
    }
    .pg-input-wrap input {
        padding: 16px 20px 0px 50px;
        font-size: 13px;
    }
}