/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fefefe;
  color: #333;
  line-height: 1.6;
}

/* Containers */
.signup-container,
.dashboard-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.signup-container h2,
.dashboard-container h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #D4AF37;
}

/* Form Styles */
form input,
form textarea,
form button {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  background-color: #D4AF37;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #bfa22f;
}

/* Error Message */
.error {
  color: red;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Rateboard Styles */
.rateboard {
  padding: 40px;
  text-align: center;
}

.ratecard {
  display: inline-block;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  width: 200px;
  background-color: #fff;
}

.ratecard h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.ratecard p {
  font-size: 16px;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #f5f5f5;
  font-size: 14px;
}
