.auth-form {
  box-sizing: border-box;
  max-width: 500px;
  width: 100%;
  margin: 16px auto;
  padding: 16px;
  background: #2d2f41;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.access-hero {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 18px;
}

.auth-form h1 {
  font-size: 22px;
  color: #f3f6ff;
}

.auth-form-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
  text-align: center;
}

.auth-form-desc {
  color: #ccd3eb;
  font-size: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-hint {
  font-size: 14px;
  color: #a8afd6;
  margin-bottom: 8px;
  line-height: 1.3;
}

.submit-con {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.auth-form-footer {
  margin-top: 16px;
  text-align: center;
}

.auth-form-link {
  color: #ffffffbd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  background: #414359;
  padding: 4px 8px;
  border-radius: 10px;
}

.auth-form-link:hover {
  background: #606485;
}

/* Password Toggle */
.password-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.password-wrapper input {
  flex: 1;
  padding-right: 40px;
}

.password-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.password-toggle:hover {
  opacity: 0.8;
}

.password-toggle img {
  width: 100%;
  height: 100%;
}

.auth-form input[readonly] {
  opacity: 0.65;
  cursor: default;
  user-select: text;
}
