.login-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F5F1EB;
  font-family: var(--font-main);
}

.login-container::before,
.login-container::after {
  display: none;
}

.login-card {
  width: 100%;
  max-width: 400px;
  margin: 20px;
  padding: 40px;
  background: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.login-title {
  text-align: center;
  margin-bottom: 32px;
}

.login-title-marker {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;

  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #2B2B2B;
  letter-spacing: 0.4px;

  background-image: linear-gradient(
    179deg,
    #FFB71D 0%,
    #FFB71D 62%,
    transparent 54%,
    transparent 100%
  );
  background-size: 100% 18%;
  background-repeat: repeat-x;
  background-position: left 0% bottom -6%;
}

.login-field {
  margin-bottom: 22px;
}

.login-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #5B5046;
}

.login-field input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #D6CFC4;
  background: #FBFAF8;
  color: #2B2B2B;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-main);
}

.login-field input:focus {
  border-color: #38BDF8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.15);
}

.login-field input::placeholder {
  color: #9A948C;
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  padding-right: 44px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);

  background: none;
  border: none;
  padding: 0;
  cursor: pointer;

  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: color 0.2s ease, transform 0.1s ease;
}

.password-toggle:hover {
  color: #111827;
}

.password-toggle:active {
  transform: translateY(-50%) scale(0.95);
}

.login-button {
  width: 100%;
  padding: 14px;
  margin-top: 12px;

  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-heading);

  color: #1F2937;
  background: #FACC15;

  border: none;
  border-radius: 8px;
  cursor: pointer;

  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.login-button:hover {
  background: #EAB308;
  box-shadow: 0 6px 16px rgba(234, 179, 8, 0.25);
}

.login-button:disabled {
  background: #E5E0D8;
  color: #9A948C;
  cursor: not-allowed;
  box-shadow: none;
}

.login-error {
  margin-top: 18px;
  padding: 10px;
  font-size: 13px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 6px;
  color: #991B1B;
  text-align: center;
}