
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #e0ecff, #f8f8f8);
  font-family: 'Heebo', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  direction: rtl;
}

.login-container {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  max-width: 400px;
  width: 90%;
  text-align: center;
  animation: fadeIn 1s ease;
}

.login-container h2 {
  margin-bottom: 24px;
  color: #007bff;
  font-size: 1.8em;
}

.login-container input {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1em;
  transition: border 0.3s ease;
}

.login-container input:focus {
  border-color: #007bff;
  outline: none;
}

.login-container button {
  background: #007bff;
  color: white;
  font-weight: bold;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.2s ease;
}

.login-container button:hover {
  background: #0056b3;
  transform: scale(1.03);
}

.password-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.password-wrapper input {
  padding-right: 13px;
}

.password-wrapper .eye-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-81%);
    right: 96%;
    font-size: 1.2em;
    color: #007bff;
    cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
