body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background-color: #f2f2f7;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.login-container {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
}
h1 {
  text-align: center;
  color: #000;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
form {
  display: flex;
  flex-direction: column;
}
input {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #d1d1d6;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
}
input:focus {
  outline: none;
  border-color: #007aff;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}
button {
  background-color: #007aff;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}
button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}
.social-login {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 8px;
  margin-top: 1rem;
}
.social-btn {
  font-size: 1rem;
  padding: 0.7rem;
  border: 1px solid #d1d1d6;
  border-radius: 8px;
  background-color: white;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-btn:hover {
  background-color: #f2f2f7;
  transform: translateY(-2px);
}
.social-btn i {
  margin-right: 1rem;
  font-size: 1.3rem;
}
.signup-link {
  text-align: center;
  margin-top: 1.9rem;
  color: #000;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
}
.higlight {
  color: #007aff;
}
.error {
  color: #ff3b30;
  text-align: center;
  margin-top: 1rem;
  display: none;
  font-weight: 500;
}
