body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #1e2a38; /* خلفية غامقة */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.logo {
  display: block;
  margin: 0 auto 20px auto; /* يخليها فوق ومتمركزة في النص */
  width: 150px;             /* حجم مناسب */
  height: auto;
}



.signup-container {
  width: 350px;
  background-color: rgba(255, 255, 255, 0.05); /* شفاف داكن */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
}

h1 {
  margin-bottom: 20px;
  color: #ffffff;
}

label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
  color: #bbb;
  font-size: 14px;
}

/* تنسيق الحقول */
input, select {
  width: 100%;
  padding: 12px 15px; /* padding يمين وشمال */
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  background-color: rgba(255,255,255,0.1);
  color: white;
  font-size: 14px;
  box-sizing: border-box;
}



/* النص داخل الحقول */
input::placeholder, select {
  color: #ccc;
}

/* عند التركيز */
input:focus, select:focus {
  outline: none;
  border: 1px solid #e45b88;  /* لون وردي عند التركيز */
  background-color: rgba(255,255,255,0.15);
}

button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

button[name="login"] {
  background-color: #e45b88;
  color: white;
}

button[name="login"]:hover {
  background-color: #b23a67;
}

.sginout {
  background-color: #666;
  color: white;
}

.sginout:hover {
  background-color: #888;
}

h4 {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

p {
  font-size: 14px;
  color: #999;
}

.warrningpara {
  color: #e45b88;   /* أحمر/بينك */
  font-size: 14px;
  margin: 10px 0;
  text-align: center;  /* تخليها في النص */
  display: block;      /* تمنعها من تزق العناصر */
}
