.adm-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(46, 125, 85, 0.2), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(18, 53, 36, 0.16), transparent 38%),
    linear-gradient(160deg, #eef3f0 0%, #f8fbf9 50%, #e9f0ec 100%);
}

.adm-login-box {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border: 1px solid #dce7e0;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(25, 57, 41, 0.12);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.adm-login-box::before {
  content: '';
  position: absolute;
  top: -115px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(46, 125, 85, 0.1);
  pointer-events: none;
}

.adm-login-box::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -105px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(18, 53, 36, 0.07);
  pointer-events: none;
}

.adm-login-brand {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 1.1rem;
}

.adm-login-brand .all-logo {
  width: 84px;
  height: 84px;
  background: linear-gradient(145deg, #123524, #2e7d55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
  box-shadow: 0 10px 24px rgba(18, 53, 36, 0.3);
}

.adm-login-brand .all-logo i {
  font-size: 42px;
  color: #ffffff;
}

.adm-login-brand h2 {
  color: #123524;
  font-size: 1.55rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.adm-login-brand p {
  color: #60726a;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.6;
}

.adm-login-box .login-title {
  position: relative;
  z-index: 1;
  font-size: 1.55rem;
  font-weight: 700;
  color: #123524;
  margin-bottom: 0.3rem;
  text-align: center;
}

.adm-login-box .login-subtitle {
  position: relative;
  z-index: 1;
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 1.6rem;
  text-align: center;
}

.adm-input-group {
  position: relative;
  margin-bottom: 1.1rem;
  z-index: 1;
}

.adm-input-group .adm-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #adb5bd;
  font-size: 1.05rem;
  z-index: 2;
}

.adm-input-group .form-control {
  padding-left: 42px;
  height: 48px;
  border-radius: 10px;
  border: 1.5px solid #dee2e6;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.adm-input-group .form-control:focus {
  border-color: #1d5a3c;
  box-shadow: 0 0 0 3px rgba(29, 90, 60, 0.13);
}

.adm-input-group .adm-pw-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #adb5bd;
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
  z-index: 2;
}

.adm-input-group .adm-pw-toggle:hover {
  color: #1d5a3c;
}

.adm-login-box .btn-adm-login {
  height: 48px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #123524, #2e7d55);
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}

.adm-login-box .btn-adm-login:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.adm-login-box .btn-adm-login:active {
  transform: translateY(0);
}

.adm-footer-note {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  color: #adb5bd;
  text-align: center;
  margin-top: 1.5rem;
}

.adm-admin-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(29, 90, 60, 0.1);
  color: #1d5a3c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.adm-actions {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .adm-login-wrap {
    padding: 1.25rem 0.95rem;
  }

  .adm-login-box {
    padding: 1.6rem 1.05rem;
    border-radius: 14px;
  }

  .adm-login-brand h2 {
    font-size: 1.35rem;
  }

  .adm-login-box .login-subtitle {
    margin-bottom: 1.25rem;
  }
}
