.accounts-section {
  background-image: url('/static/images/livingroom.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.accounts-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.accounts-card {
  background: rgba(233, 227, 204, 0.95);
  padding: 3rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.accounts-title {
  font-family: 'Playfair Display', serif;
  color: #022902;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.accounts-subtitle {
  text-align: center;
  color: #968f2b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.accounts-card p label {
  color: #022902;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.4rem;
}

.accounts-card p input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #968f2b;
  background: #fff;
  color: #1f2f26;
  font-size: 1rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

.accounts-card p input:focus {
  outline: none;
  border-color: #022902;
}

.accounts-btn {
  width: 100%;
  padding: 1rem;
  background: #022902;
  color: #968f2b;
  border: 1px solid #968f2b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.accounts-btn:hover {
  background: #968f2b;
  color: #022902;
}

.accounts-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #1f2f26;
}

.accounts-link a {
  color: #968f2b;
  text-decoration: none;
}

.accounts-link a:hover {
  color: #022902;
}

.btn-custom {
    background-color: #022902;
    color: #968f2b;
    position: relative;
    z-index: 1;
}

.btn-custom:hover {
    background-color: #968f2b;
    color: #022902;
}
