/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Vazirmatn', sans-serif;
}

body {
  background: linear-gradient(to bottom, #0c1f4a, #0e2c5e);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card {
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  color: #333;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  padding: 30px 24px;
}

.logo {
  width: 120px;
  display: block;
  margin: 0 auto 20px;
}

h1 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 18px;
  color: #003e7e;
}

p.description {
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

ul {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

ul li {
  background-color: #f1f6fb;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #d5e3f0;
}

ul li b {
  color: #003e7e;
  display: block;
  margin-bottom: 4px;
}

button {
  width: 100%;
  background-color: #003e7e;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #002a5c;
}

@media (max-width: 480px) {
  .card {
    padding: 20px;
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-size: 14px;
  color: #003e7e;
  font-weight: 600;
}

input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  direction: rtl;
}
