/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  height: 100vh;
  background-image: url('background.png'); /* إضافة الصورة الخلفية */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Login Wrapper */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Login Container */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7); /* طبقة مظللة لجعل النصوص واضحة */
  border-radius: 12px;
  width: 350px;
  padding: 30px;
  flex-direction: column;
}

/* Login Content */
.login-content {
  text-align: center;
  color: white;
}

.logo {
  width: 100px; /* عرض الشعار */
  margin-bottom: 20px;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

p {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #ff4d4d;
}

/* Input Fields */
.input-group {
  width: 100%;
  margin-bottom: 15px;
}

input[type="text"], input[type="password"], input[type="email"] {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  background-color: #333;
  border: 1px solid #444;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus {
  border-color: #00bfff; /* تغيير اللون عند التركيز */
  outline: none;
  background-color: #444; /* تغيير خلفية الحقل */
}

/* Button (Login Button) */
button {
  padding: 12px;
  background: linear-gradient(135deg, #ffb81c, #ff6a00); /* تدرج لوني بين الأصفر والبرتقالي */
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

button:hover {
  background: linear-gradient(135deg, #ffc94a, #ff7f22); /* تغيير اللون عند التمرير */
}

/* Sign-up Link */
.signup-link {
  margin-top: 20px;
  font-size: 14px;
}

.signup-link a {
  color: #00bfff;
  text-decoration: none;
}

.signup-link a:hover {
  color: #ffffff;
}
