body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.auth-container {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-top: 10px;

}

.auth-container h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #111;
}

.auth-form input[type="email"] {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 2rem;
  border: 1.5px solid #d0d0ff;
  background-color: #f9f9f9;
  outline: none;
  margin-bottom: 1rem;
  transition: border 0.3s;
  white-space: normal;
  width: 110px;
}

#contact {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 2rem;
  border: 1.5px solid #d0d0ff;
  background-color: #f9f9f9;
  outline: none;
  margin-bottom: 1rem;
  transition: border 0.3s;
}
#create_password{
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 2rem;
  border: 1.5px solid #d0d0ff;
  background-color: #f9f9f9;
  outline: none;
  margin-bottom: 1rem;
  transition: border 0.3s;
}

#password{
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 2rem;
  border: 1.5px solid #d0d0ff;
  background-color: #f9f9f9;
  outline: none;
  margin-bottom: 1rem;
  transition: border 0.3s;
}

 #verification_code{
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 2rem;
  border: 1.5px solid #d0d0ff;
  background-color: #f9f9f9;
  outline: none;
  margin-bottom: 1rem;
  transition: border 0.3s;
}

.auth-form input[placeholder="Enter the verification code"] {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 2rem;
  border: 1.5px solid #d0d0ff;
  background-color: #f9f9f9;
  outline: none;
  margin-bottom: 1rem;
  transition: border 0.3s;
  white-space: normal;
}

.auth-form input[type="email"]:focus {
  border-color: #2e5bff;
}


.auth-form input[type="emailOrMobile"]:focus {
  border-color: #2e5bff;
}

#verification_code:focus {
  border-color: #2e5bff;
}

.auth-form button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 2rem;
  border: none;
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: background-color 0.3s;
}

.auth-form button:hover {
  background-color: #1a1a1a;
}

.auth-footer {
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.auth-footer a {
  color: #2e5bff;
  text-decoration: none;
}

.divider {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  color: #aaa;
  font-size: 13px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
  margin: 0 12px;
}

.social-buttons button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 2rem;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  background-color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.social-buttons button:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.social-buttons img {
  margin-right: 10px;
}

.policy-links {
  margin-top: 1.5rem;
  font-size: 12px;
  color: #666;
}

.policy-links a {
  text-decoration: none;
  color: #666;
  margin: 0 0.5rem;
}

.error {
  color: red;
  font-size: 14px;
  margin-bottom: 1rem;
}

.signup-container {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  width: 320px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

.verification-section {
  display: flex;
  gap: 10px;
}
