/*
Theme Name: Lk
Author: Alexander Ilin
Version: 1.0
License: GNU General Public License v2 or later
*/
* {
  box-sizing: border-box;
}
html {
	margin: 0px;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  background: url('img/page-bg.jpg') center no-repeat; 
  background-size: cover;
}
input#wp-submit:hover,
a.button:hover {
  background-color: #a43e2f;
}
a {
  text-decoration: none;
}
.container {
  max-width: 1140px;
  margin: 0px auto;
}

main {
  margin: 0px auto;
  width: 970px;
  height: 600px;
  display: flex;
}
main #side {
  width: 270px;
  padding-top: 50px;
  text-align: center;
  color: #fff;
  background: url("img/sidebar-bg.jpg") top left
    no-repeat;
}
main #side .h1 {
  font-weight: 600;
  font-size: 26px;
  margin-top: 10px;
}
main #side .h2 {
  font-weight: 600;
  font-size: 12px;
}
main #content {
  background: #fff;
  width: 700px;
  max-width: 100%;
  padding: 60px;
  border-radius: 0px 50px 50px 0px;
  color: #164E91;
}
#content .title {
  color: #164E91;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}
#content .title h1 {
  font-size: 2em;
  margin: 0px;
}

#loginform {
  width: 370px;
}
#loginform label {
  margin-bottom: 5px;
  display: block;
}
#loginform label,
#loginform a {
  color: #164E91;
}
#loginform .login-remember {
  display: none;
}

.reg-form,
#reg-resp {
  margin: 0px auto;
  max-width: 600px !important;
}
.reg-form input[type="checkbox"] {
  width: 30px;
  height: 30px;
  border: 1px solid #d2d2d2;
  background: #fff;
  outline: none;
  display: inline-block;
  margin: 0px 15px 0px 0px;
}
.reg-form input[type="checkbox"] + p {
  display: inline-block;
  width: calc(100% - 50px);
  vertical-align: top;
}
.reg-form .inp.error {
  border-color: red;
}
#reg-resp p {
  text-align: left;
  font-size: 14px;
}
form.cform .frow.req > label.noreq:after {
  display: none;
}
#regform,
#regform #ebox {
  margin-top: -30px;
}
#regform.response .reg-intro {
  display: none;
}

.cabinet {
  display: flex;
}
.cabinet .info {
  width: calc(100% - 250px);
  padding-left: 30px;
}
.badge {
  width: 250px;
  background: #efefef;
  padding: 10px;
  box-shadow: 0px 0px 15px #777;
  margin: 80px auto 0px auto;
}
.badge-top {
  background: #fff;
  padding-top: 20px;
  padding-left: 5px;
  display: flex;
  justify-content: space-between;
  font-size: 12px; 
  text-transform: uppercase;
}
.badge-top .date {
  font-weight: 700; background: linear-gradient(100.35deg, #0e589e 5.06%, #0169b5 114.27%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-fill-color: transparent;
}
.badge-top .city {
	color: #000;
}
.badge-top > div:first-child {
	padding-top: 10px;
	height: 85px;
}
.bagde-lenta {
  display: block;
  width: 82px;
  margin: -75px auto 0px auto;
}
.badge-qr {
  float: right;
  position: relative;
  top: -15px;
}
.badge-content {
  padding: 20px;
  color: #fff;
  background: linear-gradient(48.82deg, #164E91 6.5%, #006AB6 71.62%);
}
.cond {
  font-family: "Roboto Condensed", sans-serif;
}
.badge-name {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 100%;
  text-transform: uppercase;
}
.badge-company {
  font-size: 1.3rem;
  line-height: 100%;
  margin-top: 8px;
  text-transform: uppercase;
}
.badge-role {
  text-align: center;
  text-transform: uppercase;
  margin-top: 30px;
  font-size: 1.6rem;
}

input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
select,
textarea {
  width: 100%;
  border: 1px solid #164E91;
  border-radius: 70px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
}
input[type="submit"],
.button {
  width: 100%;
  background-color: #F15751;
  border-radius: 70px;
  padding: 0.8rem 1rem;
  display: block;
  font-size: 1em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border: none;
  font-weight: bold;
}
.frow {
  margin-top: 15px;
}
.btn {
  background: #164E91;
  color: #fff;
  padding: 12px 24px;
  border: 1px solid #164E91;
  border-radius: 30px;
  display: inline-block;
  margin: 15px;
  font-weight: normal;
  text-decoration: none;
}
.btn:hover {
  color: #164E91;
  background: #fff;
}
.title .btn.logout {
	margin: 0px;
}

.wp-block-columns {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 970px) {
  main {
    display: block;
    max-width: 600px;
    height: auto;
  }
  main #side {
    display: none;
  }
  main #content {
    border-radius: 40px;
  }
  #regform {
    margin-top: 0px;
  }
  .cabinet {
    display: block;
  }
  .cabinet .info {
    width: 100%;
    padding-left: 0px;
  }
}

@media (max-width: 768px) {
  main {
	  width: auto;
  }
  main #content {
    padding: 20px;
	width: 94%;
	margin: 10px auto;
  }
  #loginform {
    width: 100%;
  }
  #content .title h1 {
	  font-size: 1.7em;
	  line-height: 1.1;
  }
}

@media (max-width: 500px) {
	.reg-intro p { margin: 5px 0px 0px 0px; }
	.reg-form .frow { margin-top: 10px; }
}

