body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  background: linear-gradient(135deg, #fdfdfd, #f5f5f5);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 350px;
  text-align: center;
}

.logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.company-name {
  font-size: 18px;
  font-weight: bold;
  color: #C5A100;
  margin-bottom: 20px;
}

.form-label {
  display: block;
  text-align: right;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.btn-gold {
  background-color: #C5A100;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
}

.btn-gold:hover {
  background-color: #A68B00;
}
