/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  font-family: 'Helvetica Neue', 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.register-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.register-form h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 30px;
  font-size: 26px;
  letter-spacing: 1px;
}

label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 6px;
  display: block;
  font-size: 14px;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
  font-size: 15px;
  transition: border-color 0.3s;
}

input:focus {
  border-color: #a88936;
  outline: none;
  background-color: #fff;
}

button {
  width: 100%;
  padding: 14px;
  background-color: #a88936; /* Gold-ish */
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #8d7431;
}

/* Responsive design */
@media (max-width: 500px) {
  .register-container {
    padding: 30px 20px;
  }

  .register-form h2 {
    font-size: 22px;
  }
}
.form-link {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #2c3e50;
}

.form-link a {
  color: #a88936;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.form-link a:hover {
  color: #8d7431;
}





/* Index Page Styling */
.index-body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #0f2027, #203a43, #2c5364);
  color: #f4f4f4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.index-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 1px;
}

.index-header nav a {
  margin-left: 20px;
  color: #b8a269;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.index-header nav a:hover {
  color: #e0c27b;
}

.hero-section {
  padding: 60px 20px;
  text-align: center;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
}

.hero-text p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #dcdcdc;
}

.info-cards {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 25px;
  width: 300px;
  text-align: left;
  color: #f4f4f4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #f1e7c7;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card ul li {
  margin: 8px 0;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .index-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .info-cards {
    flex-direction: column;
    align-items: center;
  }
}
