.rud-alert {
  padding: 16px;
  border-radius: 12px;
  border: 2px solid transparent;
  margin: 0 0 36px;
  display: flex;
  align-items: center;
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  font-family: "Manrope";
}
@media screen and (max-width: 1600px) {
  .rud-alert {
    font-size: 16px;
    margin: 0 0 24px;
  }
}
@media screen and (max-width: 1366px) {
  .rud-alert {
    border-radius: 8px;
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-alert {
    border-radius: 12px;
    font-size: 15px;
  }
}
.rud-alert__icon {
  width: 54px;
  min-width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin: 0 16px 0 0;
}
@media screen and (max-width: 1600px) {
  .rud-alert__icon {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }
  .rud-alert__icon svg {
    width: 16px;
  }
}
.rud-alert p {
  margin: unset;
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}
@media screen and (max-width: 1600px) {
  .rud-alert p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-alert p {
    font-size: 15px;
  }
}
.rud-alert.alert-danger {
  border-color: var(--color-warning);
  background-color: var(--color-default);
}
.rud-alert.alert-danger .rud-alert__icon {
  background-color: var(--color-warning);
}
.rud-alert.alert-success {
  border-color: var(--color-primary-100);
  background: var(--color-primary-20);
  color: var(--color-primary-80);
}
.rud-alert.alert-success .rud-alert__icon {
  background-color: var(--color-primary-90);
}

.breadcrumb {
  margin: 0 0 16px;
  padding: unset;
  border: unset;
  background-color: unset;
  border-radius: unset;
  display: flex;
  align-items: center;
}
.breadcrumb > li {
  text-shadow: unset;
  padding: unset;
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  min-height: 45px;
}
@media screen and (max-width: 1600px) {
  .breadcrumb > li {
    min-height: 35px;
  }
}
@media screen and (max-width: 650px) {
  .breadcrumb > li {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .breadcrumb > li.breadcrumb-first {
    display: flex;
  }
}
.breadcrumb > li.breadcrumb-first a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  min-width: 45px;
  height: 45px;
  border-radius: 8px;
  border: 2px solid var(--color-primary-20);
}
@media screen and (max-width: 1600px) {
  .breadcrumb > li.breadcrumb-first a {
    width: 35px;
    min-width: 35px;
    height: 35px;
  }
}
.breadcrumb > li.breadcrumb-first a svg path {
  transition: 0.3s all ease-in-out;
}
.breadcrumb > li.breadcrumb-first a:hover svg path {
  fill: var(--color-default);
}
.breadcrumb > li.breadcrumb-separator {
  margin: 0 4px;
}
@media screen and (max-width: 650px) {
  .breadcrumb > li.breadcrumb-separator__last {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .breadcrumb > li.breadcrumb-separator__mobile {
    display: flex;
  }
}
@media screen and (max-width: 650px) {
  .breadcrumb > li.breadcrumb-last {
    display: none;
  }
}
.breadcrumb > li a, .breadcrumb > li span {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  font-family: "Manrope";
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}
@media screen and (max-width: 1600px) {
  .breadcrumb > li a, .breadcrumb > li span {
    font-size: 14px;
    padding: 6px 8px;
  }
}
.breadcrumb > li a {
  border: 2px solid var(--color-primary-20);
  transition: 0.3s all ease-in-out;
  color: var(--color-grey-70);
}
.breadcrumb > li span {
  background: var(--color-primary-20);
  color: var(--color-primary-100);
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  height: 100%;
  padding: 12px 8px;
}
@media screen and (max-width: 1600px) {
  .breadcrumb > li span {
    padding: 10px 8px;
  }
}
.breadcrumb > li a:hover {
  background: var(--color-primary-90);
  border-color: var(--color-primary-90);
  color: var(--color-default);
}
.breadcrumb > li::after {
  display: none;
}
.breadcrumb > li:last-child::after {
  display: none;
}
@media screen and (max-width: 650px) {
  .breadcrumb > li.breadcrumb-mobile {
    display: flex;
  }
}

#content {
  min-height: unset;
}

.rud-forgotten {
  width: 100%;
  position: relative;
  min-height: calc(100vh - 144px);
  font-family: "Manrope";
  display: flex;
  flex-direction: column;
  margin: 144px 0 0;
}
@media screen and (max-width: 1600px) {
  .rud-forgotten {
    margin: 124px 0 0;
    min-height: calc(var(--vh, 1vh) * 100 - 124px);
  }
}
@media screen and (max-width: 1024px) {
  .rud-forgotten {
    margin: 64px 0 0;
    min-height: calc(var(--vh, 1vh) * 100 - 64px);
  }
}
@media screen and (max-width: 768px) {
  .rud-forgotten {
    min-height: calc(var(--vh, 1vh) * 100 - 110px);
    margin: 110px 0 0;
  }
}
.rud-forgotten .container {
  margin: auto;
  max-width: 788px;
}
@media screen and (max-width: 1024px) {
  .rud-forgotten .container {
    padding: 0 64px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .rud-forgotten .container {
    padding: 0 48px;
  }
}
@media screen and (max-width: 650px) {
  .rud-forgotten .container {
    padding: 0 20px;
  }
}
.rud-forgotten__title {
  color: var(--color-primary-90);
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 36px;
  padding: 0 0 36px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .rud-forgotten__title {
    margin: 0 0 24px;
    padding: 0 0 24px;
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .rud-forgotten__title {
    font-size: 36px;
  }
}
.rud-forgotten__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../image/auth/line-dark.svg);
}
.rud-forgotten__form--ver {
  display: flex;
  flex-direction: column;
}
.rud-forgotten__form .form-group {
  width: 100%;
  margin: 0 0 36px;
}
@media screen and (max-width: 1600px) {
  .rud-forgotten__form .form-group {
    margin: 0 0 24px;
  }
}
.rud-forgotten__form .form-group label {
  width: 100%;
  position: relative;
  margin: unset;
}
.rud-forgotten__form .form-group label::before {
  display: none;
}
.rud-forgotten__form .form-group label span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  z-index: 1;
  transition: var(--transition-base);
}
@media screen and (max-width: 1600px) {
  .rud-forgotten__form .form-group label span {
    font-size: 16px;
    left: 16px;
  }
}
.rud-forgotten__form .form-group label span::after {
  content: "*";
  display: block;
  margin: 0 0 0 4px;
  color: var(--color-primary-90);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: var(--transition-base);
}
@media screen and (max-width: 1600px) {
  .rud-forgotten__form .form-group label span::after {
    font-size: 16px;
  }
}
.rud-forgotten__form .form-group label input {
  height: 72px;
  width: 100%;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--color-grey-60);
  background: var(--color-default);
  transition: var(--transition-base);
  outline: unset;
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  box-shadow: unset !important;
}
@media screen and (max-width: 1600px) {
  .rud-forgotten__form .form-group label input {
    height: 50px;
    font-size: 16px;
    padding: 16px;
  }
}
.rud-forgotten__form .form-group label input:hover, .rud-forgotten__form .form-group label input:focus {
  border-color: var(--color-primary-80);
}
.rud-forgotten__form .form-group label .text-danger {
  position: absolute;
  bottom: 0;
  right: 24px;
  transform: translateY(50%);
  background-color: var(--color-default);
  z-index: 1;
  border-radius: 8px;
  color: var(--color-warning);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 4px 8px;
}
@media screen and (max-width: 1600px) {
  .rud-forgotten__form .form-group label .text-danger {
    font-size: 14px;
    right: 16px;
  }
}
.rud-forgotten__form .form-group label.rud-focus span {
  border-radius: 8px;
  background: var(--color-primary-80);
  padding: 4px 8px;
  color: var(--color-default);
  font-size: 16px;
  top: 0;
}
@media screen and (max-width: 1600px) {
  .rud-forgotten__form .form-group label.rud-focus span {
    font-size: 14px;
  }
}
.rud-forgotten__form .form-group label.rud-focus span::after {
  color: var(--color-default);
  font-size: 16px;
}
@media screen and (max-width: 1600px) {
  .rud-forgotten__form .form-group label.rud-focus span::after {
    font-size: 14px;
  }
}
.rud-forgotten__form--btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0 0;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .rud-forgotten__form--btns {
    padding: 24px 0 0;
  }
}
.rud-forgotten__form--btns::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../image/auth/line-dark.svg);
}
.rud-forgotten__form--btns__back {
  height: 70px;
  padding: 24px 36px;
  border-radius: 60px;
  border: 2px solid var(--color-grey-60);
  color: var(--color-grey-90);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: var(--transition-base);
}
@media screen and (max-width: 1600px) {
  .rud-forgotten__form--btns__back {
    padding: 16px 24px;
    height: 54px;
    font-size: 16px;
  }
}
.rud-forgotten__form--btns__back:hover {
  background: var(--color-grey-60);
  color: var(--color-dark-80);
}
.rud-forgotten__form--btns input[type=submit] {
  height: 70px;
  padding: 24px 36px;
  border-radius: 60px;
  background-color: var(--color-primary-90);
  color: var(--color-default);
  border: unset;
  outline: unset;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: var(--transition-base);
}
@media screen and (max-width: 1600px) {
  .rud-forgotten__form--btns input[type=submit] {
    padding: 16px 24px;
    height: 54px;
    font-size: 16px;
  }
}
.rud-forgotten__form--btns input[type=submit]:hover {
  background: var(--color-primary-80);
  color: var(--color-default);
}/*# sourceMappingURL=rud-forgotten.css.map */