html, body {
    background-size: cover;
    height: 100%;
    /* font-family: Arial,sans-serif; */
    margin: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

body.login {
    display: flex;
}

p {
    margin: 0px;
}

.bg {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: fixed;
    background-color: #eff2f2;
    z-index: 0;
}

.bg-top {
    position: absolute;
    left: 0;
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: center;
}

.bg-top-center {
    display: inline-block;
    width: 548px;
    height: 548px;
    background-color: #ffffff;
    border-radius: 500px;
    transform: translate(0, -470px);
}

.login-content-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 400px;
    z-index: 9;
}

.image-logo {
	display: block!important;
    max-width: 330px;
    margin: 5px 0;
}

.login-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    margin: 5px 0;
}

.login-form {
	position: relative;
    width: 325px;
    max-height: 280px;
    height: auto;
    border-radius: 38px;
    padding: 16px 16px 36px 14px;
    box-shadow: 0 5px 15px 0 rgb(48 48 48 / 10%);
    background-color: #ffffff;
    z-index: 1;
}

#loginform {

}

.login label {
    color: #72777c;
    font-size: 14px;
}

.login-username,
.login-password {
    position: relative;
}

.login input[type="text"], .login input[type="password"] {
    width: 295px;
    height: 48px;
    margin: 0 0 16px;
    padding: 8px 54px 8px 10px;
    border-radius: 80px;
    border: solid 1px #c1cbcc;
    background-color: #ffffff;
	outline: 0;
}

.login-username:before {
    content: "";
    position: absolute;
    right: 5px;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    background-image: url(/wp-content/themes/surveys/images/svg-icons/10729.svg);
    background-position: bottom;
}

.login-password:before {
    content: "";
    position: absolute;
    right: 5px;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    background-image: url(/wp-content/themes/surveys/images/svg-icons/9826.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.md-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 0px;
}

.md-checkbox:before {
    border-radius: 50px;
}

.md-checkbox:checked:before {
    border-radius: 0;
    border-color: #f39200;
}

.login-remember {
    margin: 2px 0;
}

.md-checkbox:after {
    top: 0!important;
}

.login-submit {
    position: absolute;
    left: 0;
    bottom: -24px;
    width: 100%;
    text-align: center;
    outline: 0;
}

#wp-submit {
	width: 179px;
    height: 48px;
    padding: 13px 67px 11px 70px;
    border-radius: 80px;
    box-shadow: 0 3px 30px 0 rgb(126 126 126 / 16%);
    color: #ffffff!important;
    background-color: #f39200!important;
    font-size: 16px;
    font-weight: bold;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.login-note {
    float: left;
    width: 100%;
    text-align: center;
}

/*RESPONSIVE
------------------------------------------------*/

@media screen and (max-width: 950px) {

.login-content-container {
    height: auto;
}

.image-logo {
    width: 100%;
    padding: 20px;
}

.login input[type="text"], .login input[type="password"] {
    width: 100%;
}

}

@media screen and (max-width: 600px) {

.login-form {
    width: 90%;
}

}
