/*
Theme Name: Lk
Author: Alexander Ilin
Version: 1.0
License: GNU General Public License v2 or later
*/
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  background: linear-gradient(251.5deg, #EC7030 11.87%, #1E3AF9 84.39%);
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}
a {
  text-decoration: none;
}
.d-show {
  display: block;
}
.d-hide {
  display: none;
}

.container {
  max-width: 1140px;
  margin: 0px auto;
}

main {
  margin: 0px auto;
  width: 970px;
  min-height: 600px;
  display: flex;
}
main #side {
  width: 270px;
  padding-top: 60px;
  text-align: center;
  color: #fff;
  background: #1E3AF9;
}
main #side .title {
	margin-top: 100px;
}
main #content {
  background: #fff;
  width: 700px;
  max-width: 100%;
  padding: 60px;
  border-radius: 0px 50px 50px 0px;
  color: #1E3AF9;
}
#content .title {
  color: #1E3AF9;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
#content .title h1 {
  font-size: 2em;
  margin: 0px;
}
#content .title .btn {
  margin: 0px;
} 

#loginform {
  width: 370px;
}
#loginform label {
  margin-bottom: 5px;
  display: block;
}
#loginform label,
#loginform a {
  color: #1E3AF9;
}
#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;
  gap: 25px;
}
.cabinet .info {
  min-width: calc(100% - 250px);
}
.badge {
  width: 250px;
  background: #efefef;
  padding: 10px;
  box-shadow: 0px 0px 15px #777;
  margin: 80px auto 0px auto;
  flex-shrink: 0;
}
.badge-top {
  background: #fff;
  padding: 20px 5px;
}
.bagde-lenta {
  display: block;
  width: 82px;
  margin: -70px auto 0px auto;
}
.badge-qr {
  float: right;
  position: relative;
  top: -15px;
}
.badge-content {
  padding: 20px;
  color: #fff;
  background: #1E3AF9;
}
.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;
}
.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 #002b69;
  border-radius: 70px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
}
input[type="submit"],
.button {
  width: 100%;
  background-color: #EC7030;
  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;
  cursor: pointer;
}
.button-outline {
	background-color: #fff;
	border: 1px solid #EC7030;
	color: #EC7030;
	display: inline-block;
	width: auto;
	text-transform: uppercase;
}
input.error, select.error { 
  border-color: #e02020 !important; 
}
.frow {
  margin-top: 15px;
}
.btn {
  background: #1E3AF9;
  color: #fff;
  padding: 12px 24px;
  border: 1px solid #1E3AF9;
  border-radius: 30px;
  display: inline-block;
  margin: 15px;
  font-weight: normal;
  text-decoration: none;
}
.btn:hover {
  color: #002b69;
  background: #fff;
}

.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%;
    min-width: unset;
    padding-left: 0px;
  }
}
@media (max-width: 768px) {
  main {
	  width: 100%;
  }
  main #content {
    padding: 10px 20px;
	width: 100%;
  }
  #loginform {
    width: 100%;
  }
  #regform .title {
	  margin-bottom: 5px;
  }
  #regform .frow {
	  margin-top: 4px;
  }
  #regform p {
	  margin: 5px 0px;
  }
}
