@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
.login_wrap, h3, label, input {
    font-family: inter !important;
}
#custom-login-form {
    width: 100%;
    max-width: 484px;
    border: 1px solid #CBD5E0;
    border-radius: 16px;
    padding: 32px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
}
.login_wrap img {
    margin: auto;
    display: flex;
    padding-bottom: 40px;
}
.login_wrap h3 {
    font-size: 28px;
    color: #1F2937;
    line-height: 36.4px;
}
.login_wrap label {
    width: 100%;
    display: block;
    text-align: left;
    color: #1F2937;
    font-size: 16px;
    line-height: 25.6px;
    margin-bottom: 10px;
}
.login_wrap input[type="submit"] {
    background-color: #6E29F5;
    padding: 16px;
    margin-top: 15px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.3px;
    border-radius: 8px !important;
    border: 0 !important;
}
.login_wrap input {
    border: 1px solid #E5E7EB !important;
    width: 100%;
    border-radius: 10px !important;
    background: #fff;
    padding: 16px 16px 16px 20px;
}
.login_wrap label[for="remember"] {
    width: auto !important;
    display: inline-block;
    text-align: left;
}
.login_wrap p {
    text-align: left;
    margin-top: 40px;
}
.login_wrap input#remember {
    width: auto;
    margin-right: 17px;
}
label:last-child {
    color: #A0AEC0;
    font-size: 14px;
    line-height: 22.4px;
    font-weight: 400;
    cursor: pointer;
}
.login_wrap p:last-child {
    margin: 0;
}
input::placeholder {
    color: #A0AEC0;
    font-size: 16px;
    line-height: 25.6px;
}
.login_wrap span {
    color: #E03137;
    font-size: 14px;
    line-height: 22.4px;
}
input#remember {
    position: relative;
}
input#remember:before {
    content: "";
    position: absolute;
    display: block;
    border: solid 1px #E5E7EB;
    background: #fff;
    height: 20px;
    width: 20px;
    border-radius: 6px;
    left: 0;
    top: -3px;
}
input#remember:checked:after {
    content: "";
    display: block;
    width: 6px;
    height: 9px;
    border: solid #35b34a;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 7px;
}
/* Media */
@media(max-width:767px){
    .login_wrap img {
        padding-bottom: 30px;
        max-width: 200px;
    }
    .login_wrap h3 {
        font-size: 20px;
        line-height: 30px;
    }
    .login_wrap p {
        margin-top: 30px;
    }
    .login_wrap input {
        padding: 10px 10px 10px 16px;
    }
    input::placeholder {
        font-size: 12px;
        line-height: 20px;
    }
    .login_wrap input[type="submit"] {
        padding: 10px;
        font-size: 14px;
        margin-top: 7px;
    }
    .login_wrap {
        padding: 0 20PX;
    }
    #custom-login-form {
        padding: 24px;
    }
}