body {
  background: #fffdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}
.login-container {
  background: #ffffff;
  width: 100%;
  max-width: 440px;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(188, 164, 2, 0.1);
}
.login-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  margin-bottom: 2.5rem;
}
.login-logo img {
  height: 40px;
  width: auto;
}
.login-logo span {
  font-family: "Posterama", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #1a1a0f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.login-logo em {
  font-style: normal;
  color: #bca402;
}
.login-header {
  text-align: left;
  margin-bottom: 2rem;
}
.login-title-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #bca402;
  margin-bottom: 0.75rem;
}
.login-subtitle {
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #666;
  background: #fff;
  padding: 0 0.35rem;
  position: absolute;
  top: -0.45rem;
  left: 0.85rem;
  z-index: 1;
}
.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  color: #1a1a0f;
  background: transparent;
  transition: border-color 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: #bca402;
}
.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #444;
  padding: 0;
  display: flex;
}
.password-toggle:hover {
  color: #1a1a0f;
}
.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.8125rem;
}
.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a1a0f;
  font-weight: 600;
  cursor: pointer;
}
.forgot-password {
  color: #f27272;
  text-decoration: none;
  font-weight: 500;
}
.forgot-password:hover {
  text-decoration: underline;
}
.btn-submit {
  width: 100%;
  padding: 0.875rem;
  background: #bca402;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: #a89200;
}
.back-home {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: #777;
  text-decoration: none;
}
.back-home:hover {
  color: #1a1a0f;
  text-decoration: underline;
}
.signup-prompt {
  text-align: center;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(188, 164, 2, 0.15);
}
.signup-prompt p {
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 0.5rem;
}
.signup-link {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #bca402;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.signup-link:hover {
  color: #a89200;
  text-decoration: underline;
  transform: translateY(-1px);
}
