/* --- SIGNUP SECTION STYLES --- */

.signup-section {
  min-height: 70vh; /* Takes up most of the screen height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-card {
  width: 100%;
  max-width: 800px;
  padding: 3rem 2rem;
  
  /* Ensure sharp corners */
  border-radius: 0; 
}

/* Adjusting spacing between label and input to be tighter/cleaner */
.signup-card label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.signup-card input {
  margin-bottom: 0.25rem;
  padding: 0.8rem;
}

/* Button Styling */
.signup-card button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 !important;
  transition: all 0.2s ease;
}

.signup-card button:hover {
  transform: translateY(-2px);
}

/* Link Styling */
.signup-card a {
  color: var(--pico-primary);
}

.signup-card a:hover {
  text-decoration: underline;
}