body {
  direction: rtl;
  font-family: Arial, sans-serif;
  background-color: #d0e8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 350px;
  text-align: center;
}

.title {
  color: #333;
  margin-bottom: 60px;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.input-group {
  margin-bottom: 20px;
  text-align: right;
}

.text-label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: bold;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

input:focus {
  border-color: #4a90e2;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.password-container {
  position: relative;
}

.password-container input {
  padding-left: 30px;
}

.toggle-password {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
}

.button {
  background-color: #4a90e2;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 25px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.button:hover {
  background-color: #4a90e2;
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  text-align: right;
}
.toggle-password i {
  color: #000000; /* بی‌رنگ یا خاکستری روشن */
  font-size: 18px;
  transition: color 0.3s ease;
}

.toggle-password:hover i {
  color: #4a90e2; /* رنگ آبی هنگام هاور */
}
@media (max-width: 767px) {
  .container {
    display: none;
  }
}
