body {
  /* font-family: "Vazirmatn", sans-serif; */
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  direction: rtl;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 400px;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #0072B0;
  text-align: center;
  margin-bottom: 1rem;
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #000;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.3rem;
  color: #000;
}

input {
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
}

button {
  font-family: inherit;
  background-color: #ff8080;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #ff4040;
}

.switch {
  text-align: center;
  font-size: 0.9rem;
}

.switch a {
  color: #0072B0;
  text-decoration: none;
}

#message {
  text-align: center;
  color: red;
  margin-top: 1rem;
  font-size: 0.9rem;
}
