body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f0f2f5;
  font-family: Vazir, Tahoma, sans-serif; /* فونت فارسی */
  direction: rtl; /* راست‌چین */
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #ffffff;
  padding: 40px;
  width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.title {
  text-align: center;
  margin-bottom: 20px;
  color: #333333;
}

.flex-column > label {
  color: #333333;
  font-weight: 600;
  margin-bottom: 5px;
}

.inputForm {
  border: 1.5px solid #cccccc;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  transition: 0.2s ease-in-out;
  background-color: #f9f9f9;
  box-sizing: border-box;
}

.inputForm svg {
  flex-shrink: 0;
}

.input {
  margin-right: 10px; /* راست‌چین */
  border: none;
  width: 100%;
  height: 100%;
  background-color: transparent;
  font-size: 14px;
  box-sizing: border-box;
  text-align: right; /* متن ورودی راست‌چین */
}

.input:focus {
  outline: none;
}

.inputForm:focus-within {
  border: 1.5px solid #2d79f3;
}

.flex-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flex-row label {
  font-size: 14px;
  color: #333333;
}

.button-submit {
  margin: 20px 0 10px 0;
  background-color: #2d79f3;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.button-submit:hover {
  background-color: #1a5fc1;
}

.p {
  text-align: center;
  color: #333333;
  font-size: 14px;
  margin: 5px 0;
}

.span {
  color: #2d79f3;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
