.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  padding: 2rem;
  background-color: #f5f7fa;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  color: #2e2e2e;
}

.logo-title {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #3f51b5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.auth-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.auth-form input {
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
}

.auth-form input:focus {
  border-color: #3f51b5;
  outline: none;
}

.auth-button {
  padding: 1rem;
  background-color: #3f51b5;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.auth-button:hover {
  background-color: #303f9f;
}

.error-message {
  color: red;
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: center;
}

.info-message {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: center;
}

.terms-text {
  margin-top: 1rem;
  font-size: 12px;
  color: #777;
  text-align: center;
}

.link-button {
  text-decoration: none;
  text-align: center;
  margin-top: 1rem;
}

.small-text {
 font-size: 12px;
 text-align: center;
 margin: 10px 0 0 0;
 color: #616161;
}

.g-recaptcha-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  width: 100%;
}

