﻿body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-image: url('images/bg4.jpg');
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* لون شفاف */
}

.login-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; /* تخصيص عرض مربع التسجيل */
  padding: 20px;
  background-color: white;
  border-radius: 5px; /* زوايا دائرية للمربع */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* ظل خفيف */
}

.login-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.login-form label {
  display: block;
  margin-bottom: 5px;
}

.header {
  position: absolute;
  top: 50px; /* تخصيص موقع العنوان */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; /* تخصيص عرض منطقة العنوان */
  text-align: center;
}

.header h1 {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 48px; /* تخصيص حجم الخط */
  text-transform: capitalize;
  font-weight: bold;
    text-shadow:
    1px 1px 1px red,
    2px 2px 1px red;
  color: #fff; /* لون أبيض */
}

.header h2 {
  font-family: "Trebuchet MS", Verdana, sans-serif;
    text-shadow:
    1px 1px 1px red,
    2px 2px 1px red;
  color: #fff; /* لون أبيض */
}

.header p {
  font-size: 24px; /* تخصيص حجم النص */
  color: #fff; /* لون أبيض */
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 95%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
}

.login-form button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}