/* إعدادات أساسية */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  direction: rtl;
}

/* الصندوق */
.container {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 350px;
  text-align: center;
}

/* العنوان */
h2 {
  margin-bottom: 20px;
  color: #333;
}

/* تسميات الحقول */
label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
  text-align: right;
}

/* الحقول */
input {
  width: 100%;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: border 0.3s;
  box-sizing: border-box;
}

input:focus {
  border-color: #4facfe;
  outline: none;
}

/* الزر */
button {
  margin-top: 20px;
  padding: 12px;
  width: 100%;
  background-color: #4facfe;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #00c6ff;
}
