:root {
  --accent-gold: #d4af37;
  --accent-dark: #2f3a44;
  --accent-green: #004d00;
  --accent-red: #c00000;
  --text-primary: #2f3a44;
  --text-secondary: #4a4a4a;
  --text-tertiary: #666666;
  --bg-primary: #f5f5e8;
  --bg-secondary: #fffef4;
}

.auth-container {
  min-height: calc(100vh - 120px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  background-color: var(--bg-primary);
}

.auth-card {
  background: var(--bg-secondary);
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(47, 58, 68, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.auth-header {
  text-align: center;
  margin-bottom: 24px;
}

.auth-icon {
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.auth-header h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.auth-header p {
  color: var(--text-tertiary);
  font-size: 13px;
  margin: 0;
  font-weight: 500;
}

#signup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-field input {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  transition: all 0.2s ease;
  background-color: white;
}

.form-field input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
  outline: none;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, var(--accent-gold), #b8972e);
  color: var(--text-primary);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 6px;
}

.submit-btn:hover {
  background: linear-gradient(45deg, #b8972e, var(--accent-gold));
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.2);
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 18px 0;
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 500;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #eee;
  margin: 0 10px;
}

.google-signin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: white;
  color: var(--text-primary);
  border: 1px solid #ddd;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.google-signin-btn:hover {
  background: #f9f9f9;
  border-color: #ccc;
  transform: translateY(-1px);
}

.google-signin-btn img {
  width: 16px;
  height: 16px;
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-tertiary);
}

.auth-footer a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  color: var(--accent-dark);
}

.error-message {
  font-size: 11px;
  color: var(--accent-red);
  min-height: 16px;
  margin-top: 3px;
}

.alert.alert-danger {
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
  margin-bottom: 14px;
}

@media (max-width: 600px) {
  .auth-card {
    padding: 25px 20px;
  }
  
  .auth-header h1 {
    font-size: 18px;
  }
  
  .submit-btn, 
  .google-signin-btn {
    padding: 10px;
  }
}