* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #fffbe5;
}

.container {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  background: white;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer_container {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



h1 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
}

.login-text {
  text-align: center;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.login-text a {
  color: inherit;
  text-decoration: none;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 40px;
  background: white;
  cursor: pointer;
  font-size: 0.875rem;
  color: #333;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1rem 0;
  color: #666;
  font-size: 0.875rem;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.divider span {
  padding: 0 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
}

.create-account-button {
  width: 100%;
  padding: 0.75rem;
  background-color: #eee;
  border: none;
  border-radius: 40px;
  color: #333;
  font-size: 0.875rem;
  cursor: pointer;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
}

.email-signup-text {
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-size: small;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.terms {
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
}

.terms a {
  text-decoration: none;
}


