.adm-login-wrapper {
  background: url('https://picsum.photos/1920/1080') no-repeat center center
    fixed;
  background-size: cover;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.adm-logo {
  text-align: center;
  margin-bottom: 20px;
}

.adm-logo img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  display: inline-block;
}

.adm-login-box {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-normal);
  width: 100%;
  max-width: 420px;
}

.adm-login-title {
  margin-bottom: 25px;
  text-align: center;
  color: var(--text-primary);
}

.adm-login-box label {
  display: block;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.adm-login-box input[type='text'] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background: #fff;
}

.adm-login-box input[type='password'] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background: #fff;
}

.password-field-container {
  position: relative;
  margin-bottom: 20px;
}

.password-field-container input[type='password'],
.password-field-container input[type='text'] {
  width: 100%;
  padding: 12px 45px 12px 12px;
  margin-bottom: 0;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background: #fff;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-secondary);
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: var(--text-primary);
}

.password-toggle:focus {
  outline: none;
  color: var(--hover-color);
}

.adm-login-box input[type='submit'] {
  background: var(--hover-color);
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.adm-login-box input[type='submit']:hover {
  background: #e6a400;
}

.adm-login-box .remember {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.lost-pw {
  text-align: center;
  margin-top: 15px;
}

.lost-pw a {
  color: var(--text-secondary);
  text-decoration: underline;
  font-size: 14px;
}

.adm-login-error {
  background: var(--alert-bg);
  color: var(--alert-text);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 14px;
}
