.login_wrap{display: flex; width: 100%; height: 100vh; justify-content: center; align-items: center;}
.login_box{background-color: #fff; text-align: center; padding: 70px; box-shadow:1px 1px 20px rgba(0,0,0,0.1); border-radius: 30px;}
.wrap.login{background-color: rgba(245, 245, 245, 0.643);}

.login_logo{width: 220px; margin: 0 auto; margin-bottom: 24px;}
input{width: 100%; border-radius: 30px; padding: 14px 20px; outline: none; margin-bottom: 10px; outline: 1px solid #ccc; border: 0;}
input:focus{outline: 1px solid rgb(49, 173, 80); border: 0; box-shadow: 1px 2px 62px 0px rgba(190, 224, 190, 0.39);}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-text-fill-color: #222;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
	-webkit-text-fill-color: #222;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

.login_btn{width: 100%; text-align: center; background-color:#008C43; color: #fff; padding: 14px; border-radius: 30px; cursor: pointer;}