/* Base styles matched to index.jsp vibe */
body {
  background-color: #4b1d24; /* Rich Bordeaux background */
  font-family: 'Georgia', serif; /* Elegant serif font for sophisticated vibe */
  color: #d4af37; /* Golden text color for warmth */
  margin-bottom: 80px;
}

.navbar-brand {
  font-size: 28px;
  color: #d4af37;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.navbar-light .navbar-nav .nav-link {
  color: #d4af37;
  font-weight: 600;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #fff8dc; /* Softer gold on hover */
  font-weight: 700;
}

form {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

button.signup-btn {
  width: 100%;
  border-radius: 50px;
  background-color: #d4af37;
  color: #4b1d24;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  height: 48px;
  transition: background-color 0.4s ease;
  cursor: pointer;
  font-size: 1rem;
}

button.signup-btn:hover {
  background-color: #fff8dc;
  color: #4b1d24;
}

input[type="email"], input.form-control {
  border-radius: 50px;
  border: 2px solid #d4af37;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  color: #4b1d24;
  height: 48px;
  box-sizing: border-box;
  margin-bottom: 0.75rem;
  outline: none;
}

input[type="email"]::placeholder {
  color: #a6852a;
}

input[type="email"]:focus, input.form-control:focus {
  border-color: #fff8dc;
  box-shadow: 0 0 10px #d4af37cc;
}

.container {
  background-color: transparent;
  padding: 2rem;
  color: #d4af37;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 70px;
  background-color: #4b1d24;
  color: #d4af37;
  text-align: center;
  line-height: 70px;
  font-weight: 600;
  border-top: 1px solid #d4af37;
}

a.brand-color {
  color: #d4af37;
  font-weight: 700;
  text-decoration: none;
}

a.brand-color:hover {
  color: #fff8dc;
  text-decoration: underline;
}

.social-icons a {
  font-size: 2.5rem;
  color: #d4af37;
  transition: color 0.3s ease;
  margin-left: 1rem;
}

.social-icons a:hover {
  color: #fff8dc;
  text-shadow: 0 0 8px #fff8dccc;
}

main.container {
  color: #000000; /* Pure black for sharp contrast */
}

/* Responsive tweaks below */
@media (max-width: 991.98px) {
  .content-wrapper {
    flex-direction: column;
    justify-content: center;
  }
}