@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* global box-sizing */
*,
*:after,
*:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 62.5%;
}

body {
    font: 500 15px/1.4 "Roboto", sans-serif;
    color: #000;
    background: #f6f6f6;
}

.wpcf7-spinner,
.acf-map .gmnoprint,
.acf-map .gm-style-cc,
.social-wrap.share .addtoany_list a span,
.btn-menu,
.header span.toggle {
    display: none;
}

.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    *zoom: 1;
}

h2 {
    font-size: 24px;
    margin: 0 0 5px;
}

h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 15px;
}

p {
    margin: 0 0 10px;
}

h2:last-child,
p:last-child {
    margin-bottom: 0;
}

a {
    color: #e20000;
    text-decoration: none;
}

.underline {
    text-decoration: underline;
}

.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.flex {
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.login-wrap {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.login-wrap .login {
    font-size: 0;
    padding: 45px 30px 30px;
    border-radius: 4px;
    background: #fff;
}

.login-wrap .login.narrow {
    padding-right: 50px;
    padding-left: 50px;
}

.login-wrap .login > p {
    font-size: 15px;
}

.login-wrap button {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    position: relative;
    cursor: pointer;
    background: none;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    width: 100%;
    padding: 12px 55px;
    margin: 10px 0 0;
    transition: all 0.3s ease 0s;
}

.login-wrap button:hover {
    background: #e4e4e4;
}

.login-wrap button svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate(0, -50%);
}

.login-wrap .sep {
    position: relative;
    margin: 20px 0;
}

.login-wrap .sep::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #dddddd;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.login-wrap .sep span {
    font-size: 13px;
    background: #fff;
    padding: 0 8px;
    position: relative;
    z-index: 9;
}

.login-wrap input {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #e4e4e4;
    outline: 0;
    border-radius: 4px;
    width: 100%;
    padding: 12px 20px;
    margin: 0 0 10px;
    color: #000;
    transition: all 0.3s ease 0s;
}

.login-wrap input:focus {
    border: 1px solid #000;
}

.login-wrap input.invalid {
    border-color: #e20000;
}

.login-wrap input.invalid + p {
    font-size: 13px;
    color: #e20000;
    margin-top: -12px;
}

.login-wrap input[type="checkbox"] {
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    margin: 0 5px 0 0;
}

.login-wrap .submit {
    cursor: pointer;
    background: #e20000;
    color: #fff;
    border: 1px solid #e20000;
}

.login-wrap .submit:focus {
    border: 1px solid #e20000;
}

.login-wrap label {
    display: block;
    font-size: 15px;
    text-align: left;
    position: relative;
}

.login-wrap label input {
    margin: 5px 0 20px;
}

.login-wrap label span {
    display: none;
    position: absolute;
    bottom: 31px;
    right: 20px;
    color: #e20000;
}

.login-wrap label input:not(:placeholder-shown) + span {
    display: block;
}

::-webkit-input-placeholder {
	opacity: 1;
	color: #777777;
}

::-moz-placeholder {
	opacity: 1;
	color: #777777;
}

:-ms-input-placeholder {
	opacity: 1;
	color: #777777;
}

:placeholder-shown {
	opacity: 1;
	color: #777777;
}

.color-2e2d2d {
    color: #2e2d2d;
}

.font-size-12 {
    font-size: 12px;
}

.font-size-15 {
    font-size: 15px;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.width-48 {
    width: 48%;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.submit.disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }


@media only screen and (max-width: 800px) {
    .login-wrap .login {
        padding: 30px 20px;
    }
}