@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("../img/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%;
    object-fit: cover;
    /* margin: 0 auto; */
    height: 100%;
}

.outer-form {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 100vh;
}

.left-side form {
    width: calc(100% - 44%);
    padding-top: 100px;
    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);
}

.pier .Text-Info {
    font-size: 2.5rem;
    margin-top: 5%;
}

.pier .Text-Info:first-child {
    margin-top: 15%;
}

/* @media only screen and (max-width:767px){
    .remember {
        flex-direction: column;
    }
} */

.error {
    color: red !important;
    font-size: 14px !important;
}