/*================================
=             Login              =
================================*/
/*:root {
    --primary-clr: rgba(223, 224, 216, 1);
    --primary-clr-lite: rgba(214, 234, 198, 0.35);
    --secondary-clr: rgba(242, 222, 222, 1);
    --secondary-clr-lite: rgba(235, 204, 209, 0.35);
}*/
body {
    margin: 0;
    min-height: 100vh;
    /*background: linear-gradient( to right bottom, var(--primary-clr), var(--primary-clr-lite), var(--secondary-clr), var(--secondary-clr-lite) );*/
    background: linear-gradient(-45deg, #F2E9CE, #F2C9DC, #BAD9D0, #F6F7CD);
    background-size: 400% 400%;
    animation: gradient-animation 15s ease-in-out infinite;
}
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.login-root {
    /*background: #fff;*/
    display: flex;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}
.flex-flex {
    display: flex;
}
.align-center {
    align-items: center;
}
.center-center {
    align-items: center;
    justify-content: center;
}
.box-root {
    box-sizing: border-box;
}
.flex-direction--column {
    -ms-flex-direction: column;
    flex-direction: column;
}
.padding-top--64 {
    padding-top: 64px;
}
.padding-top--24 {
    padding-top: 24px;
}
.padding-top--48 {
    padding-top: 48px;
}
.padding-bottom--24 {
    padding-bottom: 24px;
}
.padding-horizontal--48 {
    padding: 48px;
}
.padding-bottom--15 {
    padding-bottom: 15px;
}

.flex-justifyContent--center {
    -ms-flex-pack: center;
    justify-content: center;
}
.formbg {
    margin: 0px auto;
    width: 100%;
    max-width: 448px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}
.grid--50-50 {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}
.animationRightLeft {
    animation: animationRightLeft 2s ease-in-out infinite;
}
.animationLeftRight {
    animation: animationLeftRight 2s ease-in-out infinite;
}
.tans3s {
    animation: animationLeftRight 3s ease-in-out infinite;
}
.tans4s {
    animation: animationLeftRight 4s ease-in-out infinite;
}

@keyframes animationLeftRight {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(1000px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes animationRightLeft {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-1000px);
    }

    100% {
        transform: translateX(0px);
    }
}

.formbg-inner .title {
    font-size: 36px;
    font-weight: 700;
    color: var(--darkbrandcolor);
}
.formbg-inner .ulogin-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--darkbrandcolor);
    margin: 10px 10px 30px 10px;
}
.formbg-inner .btn-wrapper {
    display: flex;
    align-items: center;
    margin: 30px auto 0px auto;
}
.formbg-inner .btn-wrapper .btn {
    padding: 12px 20px;
    border-radius: var(--bs-border-radius);
    margin: 0px auto;
    width: 100%;
}
.formbg-inner .btn-wrapper .btn .icn {
    margin-right: 5px;
}
.login-page .welcome {
    position: relative;
    background: var(--bs-white);
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
.login-page .welcome .lcont {
    margin: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60%;
}
.login-page .welcome .lcont .lf {
    text-align: left;
    width: 100%;
}
.cuseffect:-webkit-autofill,
.cuseffect:-webkit-autofill:hover,
.cuseffect:-webkit-autofill:focus {
    background-color: transparent !important;
    background-image: none !important;
    color: var(--bs-body-color) !important;
    font-size: inherit;
    font-family: inherit;    
    box-shadow: none !important;
    outline: none !important;
    transition: background-color 5000s ease-in-out 0s !important;
}
.cuseffect:-webkit-autofill{
    -webkit-text-fill-color: var(--bs-body-color) !important;
}
.cuseffect:focus {
    outline: none;
}
.input-effect {
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0px 0px 0px;
    border-bottom: 2px solid var(--debcolor);
}
.input-effect.psh {
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 7% 86% 7%;
    margin: 40px 0px 0px 0px;
    border-bottom: 2px solid var(--debcolor);
}
.input-effect .icn {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--debcolor);
}
.cuseffect {
    width: 100%;
    border: 0;
    padding: 8px 0px;
    background-color: transparent;
    color: var(--brandcolor);
}
.cuseffect ~ .focus-border {
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brandcolor);
    transition: 0.4s;
}
.cuseffect:focus ~ .focus-border,
.has-content.cuseffect ~ .focus-border {
    width: 100%;
    transition: 0.4s;
    left: 0;
}
.cuseffect ~ label {
    position: absolute;
    left: 7%;
    width: 93%;
    top: 9px;
    color: var(--debcolor);
    transition: 0.3s;
    z-index: -1;
}
.cuseffect:focus ~ label, .has-content.cuseffect ~ label {
    top: -16px;
    font-size: 14px;
    color: var(--brandcolor);
    transition: all 0.3s ease-out;
}
.input-effect.psh .spbtn {
    background-color: var(--bs-white);
    color: var(--debcolor);
    border: none;
}
.cuseffect:focus ~ .spbtn, .has-content.cuseffect ~ .spbtn {
    background-color: var(--bs-white);
    color: var(--brandcolor);
    border: none;
}
.cuseffect:focus ~ .spbtn, .has-content.cuseffect ~ .spbtn .icn{
    color: var(--brandcolor);
}
.icn.active-icn {
    color: var(--brandcolor);
}
/*=====  End of Login  ======*/
@media (max-width: 768px) {

}
@media (max-width: 575px) {
    
}