html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;

  vertical-align: baseline;

  border: 0;

  font: inherit;
  font-size: 100%;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-spacing: 0;

  border-collapse: collapse;
}

caption, th, td {
  text-align: left;
  vertical-align: middle;

  font-weight: normal;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
input {
	margin: 0;
	padding: 0;

	border: none;
	outline: none;
}



.login-password-protected{
  color: #fff;
  background: #000;

  font-family: "Roboto", sans-serif;

  font-optical-sizing: auto;
}

#login{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100svh;
}
.login-inner{
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0 96px;
}


.wp-login-logo{
  width: 192px;
}
.wp-login-logo img{
  width: 100%;
  height: auto;
}

.login-line{
  display: block;

  width: 1px;
  height: 160px;

  background: #222;
}


#password_protected_read{
display: block;

color: #FFFFFF;

font-family: 'Roboto';
font-size: 12px;
font-weight: 400;
font-style: normal;
line-height: 160%;
}

#login_error{
  display: block;

  margin-top: 16px;

  color: #FFFFFF;

  font-family: 'Roboto';
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 160%;
}

#password_protected_pass{
width: 240px;
height: 40px;
margin-top: 16px;
padding: 0 10px;

color: #FFFFFF;
border-radius: 8px;
background: #222222;

font-size: 16px;
}


.submit{
  margin-top: 16px;
}

#wp-submit{
  display: block;

  width: 128px;
  height: 32px;
  margin-left: auto;

  transition:  .3s ease;
  letter-spacing: 0.04em;

  color: #FFFFFF;
  border-radius: 20px;
  /* background: linear-gradient(98.2deg, #7E4345 0%, #807B41 50%, #3E6F76 100%); */
  background: #7EAFB8;

  font-family: 'Roboto';
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 32px;

}
#wp-submit:hover{
  cursor: pointer;

  opacity: .7;
  background: linear-gradient(-98.2deg, #7E4345 0%, #807B41 50%, #3E6F76 100%);
}

@media only screen and (max-width: 768px) {
  .login-inner{
    display:block;

    width: 100%;
  }

  .wp-login-logo{
    margin: 0 auto;
  }
  .login-line{
    display:none;
  }
  .login-form{
    margin-top: 64px;

    text-align: center;
  }
  #wp-submit{
    display: block;

    width: 144px;
    height: 40px;
    margin-right: auto;
    margin-left: auto;

    line-height: 40px;
  }
}