@layer reset, base, page, custom;
:root {
  --l-H-hero: 680px;
  --l-header: 80px;
  --l-header-: -80px;
  --l-header--mobile: 56px;
  --l-header--mobile-: -56px;
  --l-services-logo: 44px;
  --l-btnH: 36px;
  --l-h-sec-footer: 150px;
  --c-text: #3F3F3F;
  --c-heading: #1e1e1e;
  --c-nav: #494949;
  --c-brand-text: #848492;
  --c-primary: #2D925B;
  --c-secondary: #1e3659;
  --c-hightlight: #ec4e00;
  --c-primary-start: #f0da98;
  --c-primary-stop: #cfab3b;
  --c-secondary-start: #ffdc23;
  --c-secondary-stop: #ffe972;
  --f-services-title: 18px;
  --f-services-title-lh: 20px;
  --f-services-title--ch: 13px;
  --f-services-title--ch-lh: 16px;
  --z-nav: 10;
  --z-hero: 8;
  --z-main: 9;
  --c-sdg1: #c74140;
  --c-sdg2: #cfa94d;
  --c-sdg3: #6b9e47;
  --c-sdg4: #aa3433;
  --c-sdg5: #df5330;
  --c-sdg6: #71b8e0;
  --c-sdg7: #edc843;
  --c-sdg8: #8d2c44;
  --c-sdg9: #df7538;
  --c-sdg10: #bf3767;
  --c-sdg11: #e6a441;
  --c-sdg12: #b28f40;
  --c-sdg13: #567c4b;
  --c-sdg14: #5794d5;
  --c-sdg15: #7fbc45;
  --c-sdg16: #3d669a;
  --c-sdg17: #2f4768;
  --c-zdg1: #a47903;
  --c-zdg2: #be9115;
  --c-zdg3: #d7aa2d;
}

:root {
  --l-inner: 1024px;
}

@keyframes slide-f-right {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-left {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-top {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes reveal-up-20 {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.tatb {
  min-height: calc(100dvh - var(--l-header));
}
@media only screen and (max-width: 768px) {
  .tatb {
    min-height: calc(100dvh - var(--l-header--mobile));
  }
}
.tatb .s-wrapper,
.tatb .user {
  position: relative;
  min-height: calc(100dvh - var(--l-header));
}
@media only screen and (max-width: 768px) {
  .tatb .s-wrapper,
  .tatb .user {
    min-height: calc(100dvh - var(--l-header--mobile));
  }
}

.s-wrapper > .user {
  padding: 20px;
  background: url(../images/user-bg.jpg) no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-wrapper > .user .reset {
  font-size: 0.875rem;
  margin: 10px 0 16px;
}
.s-wrapper > .user .reset a {
  color: #0a4194;
}
.s-wrapper > .user .reset a:hover {
  color: #3F3F3F;
  text-decoration: underline;
}
.s-wrapper > .user.login > .l-inner {
  display: flex;
  padding: 30px 10px;
}
@media only screen and (max-width: 768px) {
  .s-wrapper > .user.login > .l-inner {
    padding: 20px;
    display: block;
  }
}
.s-wrapper > .user.login > .l-inner .title {
  font-size: 1.875rem;
  margin: 0 0 20px;
  font-weight: bold;
}
.s-wrapper > .user.login > .l-inner .login-box {
  flex: 0 0 50%;
  padding: 10px 40px 20px 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 768px) {
  .s-wrapper > .user.login > .l-inner .login-box {
    padding: 10px;
    border-right: none;
  }
}
.s-wrapper > .user.login > .l-inner .login-box .btn-primary {
  font-size: 1.125rem;
  padding: 12px 30px;
  background: #0a4194;
}
.s-wrapper > .user.login > .l-inner .login-box .btn-primary:after {
  opacity: 0.2;
}
.s-wrapper > .user.login > .l-inner .register-box {
  flex: 0 0 50%;
  padding: 10px 20px 20px 40px;
}
@media only screen and (max-width: 768px) {
  .s-wrapper > .user.login > .l-inner .register-box {
    padding: 30px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
}
.s-wrapper > .user.login > .l-inner .register-box .desc {
  font-size: 1.125rem;
  color: #1e3659;
  line-height: 1.8;
  margin-block-end: 20px;
}
.s-wrapper > .user.login > .l-inner .register-box .btn-primary {
  font-size: 1.125rem;
  padding: 12px 30px;
}
.s-wrapper > .user > .l-inner {
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.s-wrapper > .user > .l-inner fieldset {
  border: none;
  padding: 0;
  margin: 0;
  width: auto;
}
.s-wrapper > .user > .l-inner fieldset .password-group {
  width: 100%;
}
.s-wrapper > .user > .l-inner fieldset .input-group {
  position: relative;
}
.s-wrapper > .user > .l-inner fieldset input.form-control {
  width: 100%;
}
.s-wrapper > .user > .l-inner fieldset input[name=password] {
  padding-right: 50px;
}
.s-wrapper > .user > .l-inner fieldset button.input-password-toggle {
  position: absolute;
  right: 0;
}
.s-wrapper > .user > .l-inner fieldset button.input-password-toggle .visually-hidden {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .input-password-toggle .visually-hidden {
    display: none;
  }
}

.user .l-inner {
  display: flex;
  flex-direction: row;
}
.user .l-inner .login-box {
  padding: 0 0 0 30px;
  margin: 0 0 0 30px;
  border-left: 1px solid rgba(170, 170, 170, 0.5);
  width: 39%;
}
@media only screen and (max-width: 768px) {
  .user .l-inner .login-box {
    border-top: 1px solid rgba(170, 170, 170, 0.5);
    border-left: none;
    padding: 30 0;
    margin: 30px 0 0 0;
  }
}
.user .l-inner .register-box {
  flex: 1;
}
.user .l-inner .register-box__title {
  font-size: 20px;
  color: #2D925B;
  padding-bottom: 20px;
}
.user .l-inner .register-box__intro {
  font-size: 15px;
  color: #3F3F3F;
  padding-bottom: 15px;
  font-weight: 400;
}
.user .l-inner .register-box__group {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 431px) {
  .user .l-inner .register-box__group {
    flex-direction: column;
  }
}
.user .l-inner .register-box__item {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid rgba(170, 170, 170, 0.5);
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
@media only screen and (max-width: 375px) {
  .user .l-inner .register-box__item {
    justify-content: center;
  }
}
.user .l-inner .register-box__desc {
  font-size: 13px;
  line-height: 1.7;
}
.user .l-inner .register-box__type {
  font-size: 23px;
  color: #3F3F3F;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .user .l-inner {
    flex-direction: column;
  }
  .user .l-inner .login-box {
    padding-right: 0;
    padding-left: 0;
    padding-top: 30px;
    border-right: none;
    border-bottom: 1px solid rgba(170, 170, 170, 0.5);
    width: 100%;
    max-width: auto;
  }
  .user .l-inner .register-box {
    padding-left: 0;
  }
}

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