@charset "UTF-8";
/*
=====================
Збиваєм відступи h,p,img,list
=====================
*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list {
  list-style: none;
  margin: 0px;
  padding: 0;
}

.link {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Lato", sans-serif;
}

#common-components-root {
  display: none;
}

.btn {
  border-right: 6px;
  font-size: 16px;
  padding: 10px 14px;
  height: 50px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 200ms linear all;
  position: relative;
}
.btn.w-100 {
  width: 100%;
}
.btn.primary {
  background: #015E30;
  color: white;
}
.btn.primary:hover {
  background: #02aa57;
}
.btn .loader-btn,
.btn .loader-btn:before,
.btn .loader-btn:after {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}
.btn .loader-btn {
  color: #FFF;
  font-size: 7px;
  text-indent: -9999em;
  animation-delay: -0.16s;
  display: none;
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
}
.btn .loader-btn:before, .btn .loader-btn:after {
  content: "";
  position: absolute;
  top: 0;
}
.btn .loader-btn:before {
  left: -3.5em;
  animation-delay: -0.32s;
}
.btn .loader-btn:after {
  left: 3.5em;
}
@keyframes bblFadInOut {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
.btn.loading {
  background: #cccccc !important;
}
.btn.loading .text {
  display: none;
}
.btn.loading .loader-btn {
  display: flex;
}

.wrapper {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .wrapper {
    padding: 40px;
  }
}
@media screen and (max-width: 575px) {
  .wrapper {
    padding: 20px;
  }
}
.wrapper .data-entry {
  width: 100%;
  max-width: 430px;
}
.wrapper .data-entry .logo {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  max-width: 200px;
}
.input-group {
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
}
.input-group .label {
  font-size: 16px;
  padding-left: 6px;
  margin-bottom: 8px;
}
.input-group .input {
  width: 100%;
  padding: 14px;
  font-size: 18px;
  border: 1px solid #015E30;
  border-radius: 6px;
  transition: 200ms linear all;
}
.input-group .input::placeholder {
  color: rgba(98, 96, 91, 0.42);
}
.input-group .input:focus-visible {
  outline: none;
}
.input-group .input:focus, .input-group .input:hover {
  border-color: #02aa57;
}
.input-group .error-message {
  padding-left: 6px;
  font-size: 12px;
  position: absolute;
  color: #b81c23;
  bottom: 6px;
}
.input-group .password-icon {
  position: absolute;
  right: 10px;
  bottom: 40px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.forgot-password-form .section-title {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 5px;
  position: relative;
  line-height: 1.3;
}
.forgot-password-form .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background: #0a4d25;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}
.forgot-password-form .section-title.arrow-small::after {
  width: 60%;
}
.forgot-password-form .section-title.arrow-top::before {
  content: "";
  position: absolute;
  width: 60%;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  height: 2px;
  border-radius: 3px;
  background: #0a4d25;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}
.forgot-password-form .section-title .title {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 600;
}
.forgot-password-form .section-title .text {
  font-size: 18px;
}

.loader-container {
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
}
.loader-container.show {
  display: flex;
}
.loader-container .loader {
  width: 32px;
  height: 32px;
  position: relative;
  border-radius: 50%;
  color: #015E30;
  animation: fill 1s ease-in infinite alternate;
}
.loader-container .loader::before, .loader-container .loader::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  left: 48px;
  top: 0;
  animation: fill 0.9s ease-in infinite alternate;
}
.loader-container .loader::after {
  left: auto;
  right: 48px;
  animation-duration: 1.1s;
}
@keyframes fill {
  0% {
    box-shadow: 0 0 0 2px inset;
  }
  100% {
    box-shadow: 0 0 0 10px inset;
  }
}

/*# sourceMappingURL=main.css.map */
