#page-dashboard-login .section-hero .flex-wrapper .left-image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#main-notifications {
  position: fixed;
  right: 30rem;
  bottom: 30rem;
  pointer-events: none;
  z-index: 100;
}
#main-notifications .notification {
  background-color: #d7b57d;
  position: relative;
  width: 300rem;
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  height: 0;
  overflow: hidden;
  transition-property: height, margin, opacity;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
@media (max-width: 1023px) {
  #main-notifications .notification {
    max-width: 90vw;
  }
}
#main-notifications .notification::after {
  content: "";
  background-color: #d7b57d;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4rem;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  z-index: 3;
}
#main-notifications .notification-description {
  color: white;
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 10rem 15rem 13rem;
}
@media (max-width: 1023px) {
  #main-notifications .notification-description {
    font-size: 14rem;
  }
}
#main-notifications .notification-progress {
  background-color: white;
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4rem;
  transform-origin: 0% 50%;
  transition-property: transform;
  transition-duration: 5s;
  transition-timing-function: linear;
  z-index: 2;
}
#main-notifications .notification.active {
  margin: 20rem 0 0;
}
#main-notifications .notification.active::after {
  opacity: 0;
  transition-delay: 0.3s;
}
#main-notifications .notification.active .notification-progress {
  transform: scaleX(0);
  transition-delay: 0.3s;
}
#main-notifications .notification.remove {
  opacity: 0;
}

#page-dashboard-login {
  background-color: white;
  position: relative;
  width: 100%;
  overflow: hidden;
}
#page-dashboard-login .section-hero {
  position: relative;
  height: 100vh;
}
#page-dashboard-login .section-hero .background {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
}
#page-dashboard-login .section-hero .background img {
  width: 310rem;
  height: unset;
}
#page-dashboard-login .section-hero .flex-wrapper {
  position: relative;
  display: flex;
  z-index: 2;
}
@media (max-width: 1023px) {
  #page-dashboard-login .section-hero .flex-wrapper {
    padding: 0 20rem;
  }
}
#page-dashboard-login .section-hero .flex-wrapper .left {
  position: relative;
  margin-right: 175rem;
}
@media (max-width: 1023px) {
  #page-dashboard-login .section-hero .flex-wrapper .left {
    display: none;
  }
}
#page-dashboard-login .section-hero .flex-wrapper .left::before {
  content: "";
  position: absolute;
  top: 180rem;
  right: -23rem;
  bottom: 0;
  left: 0;
  background-color: #c7aa6b;
  border-radius: 0 100px 0 0;
  z-index: 1;
}
#page-dashboard-login .section-hero .flex-wrapper .left-image {
  position: relative;
  width: 650rem;
  height: 100vh;
  overflow: hidden;
  border-radius: 0 100px 100px 0;
  z-index: 2;
}
#page-dashboard-login .section-hero .flex-wrapper .right {
  position: relative;
  width: 440rem;
  padding-top: 72rem;
}
@media (max-width: 1023px) {
  #page-dashboard-login .section-hero .flex-wrapper .right {
    width: 100%;
    text-align: center;
  }
}
#page-dashboard-login .section-hero .flex-wrapper .right-return {
  margin-top: 30rem;
}
#page-dashboard-login .section-hero .flex-wrapper .right-return a {
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  #page-dashboard-login .section-hero .flex-wrapper .right-return a {
    justify-content: center;
  }
}
#page-dashboard-login .section-hero .flex-wrapper .right-return a span {
  margin-left: 8rem;
  color: #222221;
  font-size: 18rem;
  font-weight: 600;
}
#page-dashboard-login .section-hero .flex-wrapper .right-title {
  margin-top: 95rem;
  display: inline-flex;
  align-items: center;
}
#page-dashboard-login .section-hero .flex-wrapper .right-title span {
  margin-left: 15rem;
  color: #222221;
  font-size: 41rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
#page-dashboard-login .section-hero .flex-wrapper .right-form {
  margin-top: 33rem;
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .field-group {
  position: relative;
  width: 295rem;
}
@media (max-width: 1023px) {
  #page-dashboard-login .section-hero .flex-wrapper .right-form .field-group {
    margin: 0 auto;
    width: 400rem;
  }
}
@media (max-width: 767px) {
  #page-dashboard-login .section-hero .flex-wrapper .right-form .field-group {
    width: 100%;
  }
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .field-group:not(:last-child) {
  margin-bottom: 20rem;
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .field-group .label {
  background-color: white;
  color: #c7aa6b;
  font-size: 16rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  position: absolute;
  top: 11rem;
  left: 12rem;
  padding: 0 10rem;
  display: inline-block;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .field-group .field {
  background-color: transparent;
  width: 100%;
  height: 39rem;
  padding: 0 20rem;
  border-radius: 7px;
  border: 1px solid #6c6c6c;
  color: #222221;
  font-size: 16rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  transition-property: border;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .field-group .field:focus {
  border: 1px solid #c7aa6b;
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .field-group .field:focus::-moz-placeholder {
  opacity: 0;
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .field-group .field:focus::placeholder {
  opacity: 0;
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .field-group .field::-moz-placeholder {
  color: #222221;
  -moz-transition-property: opacity;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .field-group .field::placeholder {
  color: #222221;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .field-group textarea.field {
  padding: 15rem 20rem;
  height: 83rem;
  resize: none;
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .field-group.not-empty .label, #page-dashboard-login .section-hero .flex-wrapper .right-form .field-group.focus .label {
  transform: translate(-6rem, -18rem) scale(0.7);
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .form-flex {
  margin-top: 35rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  #page-dashboard-login .section-hero .flex-wrapper .right-form .form-flex {
    margin-top: 50rem;
    justify-content: center;
  }
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .form-flex .form-forgot {
  margin-left: 20rem;
}
#page-dashboard-login .section-hero .flex-wrapper .right-form .form-flex .form-forgot a {
  color: #222221;
  font-size: 16rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-decoration: underline !important;
}
#page-dashboard-login .section-hero .flex-wrapper .right-cadaster {
  margin-top: 50rem;
  color: #222221;
  font-size: 16rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}
#page-dashboard-login .section-hero .flex-wrapper .right-cadaster a {
  color: #c7aa6b;
}
#page-dashboard-login .section-hero .flex-wrapper .right-copyright {
  color: #222221;
  font-size: 12rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  position: absolute;
  bottom: 40rem;
  left: 0;
}
@media (max-width: 1023px) {
  #page-dashboard-login .section-hero .flex-wrapper .right-copyright {
    width: 100%;
    left: 50%;
    bottom: 50rem;
    transform: translateX(-50%);
  }
}
/*# sourceMappingURL=dashboard-login.min.css.map */
