@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
*{
font-family: "Tajawal", sans-serif;
}
body {
  background: linear-gradient(to right, #1abc9c, #2ecc71);
  direction: rtl;
  text-align: right;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.auth-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-align: right;
  transition: all 0.3s ease-in-out;
}

.auth-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.auth-card h3 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 25px;
}

.auth-card .form-control {
  border: 1px solid #ced4da;
  border-radius: 8px;
}

.auth-card .btn-primary {
  background-color: #27ae60;
  border: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.auth-card .btn-primary:hover {
  background-color: #219150;
}

.auth-card a {
  color: #27ae60;
  text-decoration: none;
  font-weight: 500;
}

.auth-card a:hover {
  text-decoration: underline;
}
