body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #004643;
}

.signup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.signup-container {
  display: flex;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.signup-left {
  background-color: #B2DFDB;
  flex: 1;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  color: #004D40;
  text-align: center;
}

.signup-right {
  flex: 1;
  padding: 40px;
}

.form-title {
  font-size: 28px;
  color: #004D40;
  font-weight: bold;
  margin-bottom: 20px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="password"] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
}

.checkbox-label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-label a {
  color: #004D40;
  text-decoration: underline;
}

.submit-btn {
  background-color: #F9BC60;
  padding: 12px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-btn:hover {
  background-color: #e5a93f;
}

.login-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.login-link a {
  font-weight: bold;
  text-decoration: underline;
}

.start-button {
  background-color: white;
  color: black;
  font-weight: bold;
  padding: 12px 32px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s ease-in-out;
}

.start-button:hover {
  transform: translateY(-1px);
}

input[type="date"] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 100%;
  font-size: 16px;
  background-color: white;
  color: #333;
}
.signup-form label .label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}
