html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.login {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  margin: 0;
}

.login-shell {
  width: 100%;
  height: 100%;
  background: #F8F8F8;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 50% 50%;
  overflow: hidden;
}

.login-panel {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-content {
  width: 418px;
}

.login-header {
  margin-bottom: 24px;
}

.login-eyebrow {
  color: #030303;
  font-family: "Poppins", sans-serif;
  font-size: 46px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.login-subtitle {
  margin: 0;
  color: #6b6b6b;
  font-size: 18px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 418px;
}

.login-form .input-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form label {
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.login-form input {
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  font-size: 14px;
  height: 54px;
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.25);
}
.login-form input:focus {
  outline: none;
  border-color: #f48b1a;
  box-shadow: 0 0 0 3px rgba(244, 139, 26, 0.15);
}
.login-form input.input-error {
  border-color: #D50000;
  box-shadow: none;
}
.login-form input.input-error:focus {
  border-color: #D50000;
  box-shadow: 0 0 0 3px rgba(213, 0, 0, 0.15);
}

.login-error-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffe6e6;
  border-radius: 16px;
  padding: 10px 8px;
  margin-bottom: 8px;
}

.login-error-box[hidden] {
  display: none;
}

.login-error-box .warning-font-icon {
  flex-shrink: 0;
  font-size: 20px;
  color: #D50000;
}

.login-error-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.064px;
  color: #D50000;
}

.login-meta {
  display: flex;
  justify-content: flex-end;
  margin-top: -2px;
}

.login-link {
  color: #f2811d;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.login-error {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
}

.login-submit {
  margin-top: 6px;
  height: 53px;
  background: #f48b1a;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.login-art {
  position: relative;
  background-color: #F8F8F8;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  height: 100%;
}

.login-art-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.login-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: #1e3a8a;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.login-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-nav-logo-icon {
  width: 28px;
  height: 34px;
}

.login-nav-logo-text {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.login-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.login-nav-menu span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.login-mobile-backdrop {
  display: none;
  position: absolute;
  top: -8px;
  right: 0;
  width: 286px;
  height: 231px;
  overflow: hidden;
}

.login-mobile-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .login-shell {
    grid-template-columns: 1fr;
  }
  .login-art {
    display: none;
  }
  .login-nav {
    display: flex;
  }
  .login-mobile-backdrop {
    display: block;
  }
  .login-header {
    margin-bottom: 41px;
  }
  .login-panel {
    padding: 178px 24px 40px;
    max-width: 360px;
    margin: 0 auto;
  }
  .login-eyebrow {
    font-size: 36px;
    letter-spacing: 1.08px;
    text-align: center;
  }
  .login-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #636364;
    text-align: center;
  }
  .login-content {
    max-width: 312px;
  }
  .login-form {
    width: 100%;
    max-width: 312px;
    margin: 0 auto;
  }
  .login-form input {
    height: 40px;
    border-radius: 12px;
  }
  .login-link {
    font-size: 12px;
  }
  .login-submit {
    font-size: 14px;
  }
}


