@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0px;
    box-sizing: border-box;
}

.pier {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* ------left-side----- */
.left-side {
    width: 100%;
}

.outer-wrap {
    height: 100vh;
    align-items: center;
    /* background-image: url("../../App_Image/1.png"); */
    background-size: cover;
    background-repeat: no-repeat;
}

.logo h2 {
    /* color: #256845; */
    /* font-weight: 800; */
    font-size: 1.5rem;
}

/* ------right-side */
.right-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* object-position: center; */
    margin: 0 auto;
}

.outer-form {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 100vh;
}

.left-side form {
    /* width: calc(100% - 44%);  */
    width: 100%;
    max-width: 540px;
    /* padding-top: 100px; */
    padding-top: 40px;
    margin: 0 auto;
}

.left-side form h2 {
    font-weight: 600;
    font-size: calc(26px + 0.1vw);
    color: #474747;
}

.left-side form p {
    font-weight: 400;
    text-align: center;
    color: #474747;
}

/* -------input-field------ */
.left-side .input-field label {
    color: #474747;
    font-size: calc(16px + 0.1vw);
    text-align: left;
}

.group {
    position: relative;
}

.group .input {
    width: 100%;
    border: 1px solid #C9BCBC;
    border-radius: 8px;
    padding-left: 2.5rem;
    height: 45px;
    outline: none;
}

.group .input::placeholder {
    font-size: calc(14px + 0.1vw);
    color: #8d8d8d;
}

.group .icon {
    position: absolute;
    top: 0.7rem;
    right: 0.9rem;
    color: #919DA9;
    font-size: 18px;
}

.group .icon1 {
    position: absolute;
    top: 0.7rem;
    left: 0.5rem;
    color: #919DA9;
    font-size: 18px;
}

/* -------------remember-me-------------- */
.remember a {
    /* text-decoration: none; */
    font-size: calc(14px + 0.1vw);
    color: #474747;
    text-wrap: nowrap;
}

.remember .checkbox label {
    font-size: calc(14px + 0.1vw);
    color: #474747;
    text-wrap: nowrap;
}


/* -----------custom-checkbox--------- */
.remember .checkbox {
    position: relative;
}

.check_robo_field {
    position: relative;
}

.remember .checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.captcha .check input[type="checkbox"] {
    width: 22px;
    height: 22px;
}

.remember .checkbox input[type=checkbox], .captcha .check input[type=checkbox] {
    appearance: none;
    display: flex;
    align-content: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid #C9BCBC;
    border-radius: 3px;
    align-items: center;
}

.remember .checkbox input[type="checkbox"]::before, .captcha .check input[type="checkbox"]::before {
    content: "";
    width: 18px;
    height: 18px;
    clip-path: polygon(28% 38%, 41% 53%, 75% 24%, 86% 38%, 40% 78%, 15% 50%);
    transform: scale(0);
    background-color: #C9BCBC;
}

.remember .checkbox input[type="checkbox"]:checked::before, .captcha .check input[type="checkbox"]:checked:before {
    transform: scale(1);
}


/* ---------sign-in-button------------ */
.sign-in-btn button {
    border: none;
    border-radius: 10px;
    padding: 12px 0px;
    background: linear-gradient(180deg, #6E2085 -85.12%, #810C7B 25.03%, #3586DE 157.85%);
    color: rgb(255, 255, 255);
    margin: 30px 0px;
    font-size: calc(18px + 0.1vw);
}

/* 05-07-2025 new css  */
.lockIcon-psw {
    position: absolute;
    left: 10px;
    top: 10px;
}

.lockIcon-psw svg {
    width: 23px;
    height: 23px;
    color: #584657;
}


/* @media only screen and (max-width:767px){
    .remember {
        flex-direction: column;
    }
} */


/* loader css  */

.loaderMain {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-color: #ffffff91;
    display: none;
}

.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    color: rgb(0 0 0);
}

.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader:after {
    color: #b93392;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {

    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }

    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }

    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }

    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }

    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }

    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }

    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }

    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}

.left-side .logo h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.left-side .logo h2 img {
    max-height: 80px;
    width: fit-content;
}

.left-side .logo h2 img:nth-child(2) {
    border-top: 1px solid #ededed;
}

.left-side .logo h2 img:nth-child(1) {
    margin-bottom: 15px;
}

.is-invalid {

  border-color: red !important;
/* 
  background-color: #ffecec !important; */

}

.required-field::before {

  content: "*";

  color: red;

}

.error-message .is-invalid {

  color: red;

  /* Set text color to red for visibility */

}
