

/* Start:/local/templates/future_2021/css/login.css?17534640818227*/
* {
  font-family: "Raleway", sans-serif;
}

.authorization-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 90px 0;
  flex-direction: column;
}
.authorization-container .authorization-header h3 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
}
.authorization-container .authorization-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.authorization-container .authorization-buttons a {
  margin-right: 40px;
  color: #29332d;
}
.authorization-container .authorization-buttons a:last-child {
  margin-right: 0;
}
.authorization-container .authorization-buttons .login {
  background-color: #29332d;
  padding: 12px 30px;
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
}
.authorization-container .input-section {
  margin-top: 50px;
}
.authorization-container .input-section .separation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}
.authorization-container .input-section .separation p {
  color: #808080;
  margin: 0 20px;
}
.authorization-container .input-section .separation hr {
  width: 100%;
}
.authorization-container .input-section .text-field {
  position: relative;
  width: 378px;
}

.authorization-container .input-section .second-window {
  display: none;
}
.authorization-container .input-section .text-field .text-field-input {
  width: 100%;
  height: 59px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 20px;
  position: relative;
  padding-right: 50px;
  transition: all 0.25s ease;
}
.authorization-container .input-section a {
  content: "";
  background-image: url(/local/templates/future_2021/css/../images/Arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  object-fit: contain;
  width: 20px;
  height: 7px;
  position: absolute;
  top: 1px;
  right: 0;
  padding: 29px;
  border-radius: 6px;
}
.authorization-container .input-section .text-field .text-field-label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  transition: 0.5s;
  padding: 20px;
  color: #949996;
}
.authorization-container
  .input-section
  .text-field
  .text-field-input:focus
  + label,
.authorization-container
  .input-section
  .text-field
  .text-field-input:not(:placeholder-shown)
  + label {
  top: 1px;
  left: 15px;
  background-color: #fff;
  font-size: 12px;
  line-height: 12px;
  padding: 5px;
  color: #000000;
}
.authorization-container .input-section .text-field .text-field-input:focus,
.authorization-container
  .input-section
  .text-field
  .text-field-input:not(:placeholder-shown) {
  border: 1px solid #29332d;
}

.authorization-container
  .input-section
  .first-window
  .second-part
  .text-under-email {
  display: none;
  width: 310px;
  margin-top: 25px;
  color: #949996;
  text-align: center;
}
.authorization-container .input-section .second-window .text-under {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 80%;
}
.authorization-container
  .input-section
  .second-window
  .text-under
  .text-under-button {
  padding: 18px 60px;
  background-color: #29332d;
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  margin-top: 25px;
}
.authorization-container
  .input-section
  .second-window
  .text-under
  .text-under-button:disabled,
button[disabled] {
  background-color: #d4d6d5;
  color: #7f8080;
}
.authorization-container
  .input-section
  .second-window
  .text-under
  .text-under-p {
  margin-bottom: 33px;
}
.authorization-container
  .input-section
  .second-window
  .text-under
  .text-under-p:nth-child(2) {
  margin-bottom: 0;
}

.signup-block .first-window > * {
  margin-bottom: 30px;
}
.signup-block .first-window {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.signup-block .registration-button {
  padding: 18px 60px;
  background-color: #29332d;
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
}
/* The Modal (background) */
.registration-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 88px auto;
  padding: 20px;
  border: 1px solid #888;
  width: 506px;
  height: 362px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  position: relative;
}
.modal-content .modal-text button {
  padding: 18px 60px;
  background-color: #29332d;
  color: #ffffff;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  margin-top: 30px;
}
.modal-content .modal-text {
  text-align: center;
  width: 324px;
}
.modal-content .modal-text h5 {
  margin: 0 0 10px 0;
}
.modal-content .modal-text hr {
  margin: 30px 0;
}
/* The Close Button */
.close {
  color: #000;
  float: right;
  font-size: 35px;
  position: absolute;
  font-weight: bold;
  top: 4px;
  right: 18px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.authorization-container .input-section .fifth-part {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 384px;
  height: 508px;
  text-align: center;
}
.authorization-container .input-section .fifth-part h3 {
  font-size: 24px;
  line-height: 33px;
  font-weight: 700;
}
.authorization-container .input-section .fifth-part p {
  font-size: 16px;
  line-height: 22px;
}

.authorization-container .input-section .fifth-part .fifth-image {
  background: url(/local/templates/future_2021/css/../images/thanks-window.png) no-repeat center / contain;
  width: 299px;
  height: 296px;
  margin: 50px 0;
}

.authorization-container .checkbox-block {
    display: flex;
    width: 378px;
}

.authorization-container .checkbox-item {
    width: 20px;
    height: 20px;
    margin-right: 24px;
}

.authorization-container .checkbox-block p {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.authorization-container .checkbox-block a {
    text-decoration: underline;
    cursor: pointer;
    content: 'условиями';
    background: none;
    width: auto;
    height: auto;
    position: static;
    top: auto;
    right: auto;
    border-radius: 0px;
    padding: 0px;
}

.authorization-container .checkbox-block a:hover {
    text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .authorization-container {
    height: 100%;
    padding: 60px 0;
  }
  .authorization-header {
    font-size: 20px;
    line-height: 20px;
  }
  .authorization-container .authorization-buttons {
    margin-top: 30px;
  }
  .authorization-container .input-section {
    margin-top: 40px;
    width: 100%;
  }
  .authorization-container .input-section .text-field {
    width: 100%;
  }
  .authorization-container .input-section .text-field .text-field-input {
    height: 56px;
  }
  .authorization-container .input-section .separation {
    margin: 30px 0;
  }
  .authorization-container .input-section .separation p {
    font-size: 12px;
    line-height: 14px;
  }
  .authorization-container .input-section .second-window .text-under {
    width: 100%;
  }
  .authorization-container
    .input-section
    .second-window
    .text-under
    .text-under-p {
    margin-bottom: 20px;
  }
  .authorization-container
    .input-section
    .second-window
    .text-under
    .text-under-button {
    margin-top: 20px;
  }
  .signup-block .first-window > * {
    width: 100%;
  }
  .signup-block .registration-button {
    width: auto;
  }
  .signup-block .registration-modal .modal-content {
    width: 100%;
    height: 430px;
  }
  .signup-block .authorization-container .input-section .fifth-part {
    width: 100%;
  }
  .signup-block .authorization-container {
    padding: 40px 0;
  }
  .modal-content {
	  width: 100%;
  }
}

/* End */
/* /local/templates/future_2021/css/login.css?17534640818227 */
