* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1c2434 0%, #0a0f1f 60%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow-x: hidden;
  padding: 20px;
}

.login-wrapper {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: center;
}

.login-card {
  width: 100%;
  background: linear-gradient(180deg, #0f172a, #0b1020);
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  text-align: center;
  transition: 0.3s;
}

.logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.logo-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(180deg, #ffb300, #ff9800);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 14px;
  color: #9aa4b2;
  margin-bottom: 25px;
}

.field {
  position: relative;
  margin-bottom: 18px;
  text-align: right;
}

.field label {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 6px;
  display: block;
}

.field input,
.field select {
  width: 100%;
  padding: 14px 42px 14px 14px;
  background: #0f172a;
  border: 1px solid #1f2937;
  border-radius: 12px;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.field input::placeholder {
  color: #6b7280;
}

.field input:focus,
.field select:focus {
  border-color: #ffb300;
  background: #111827;
}

.field .icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #ff9800;
}

.login-btn {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  background: linear-gradient(180deg, #ffb300, #ff9800);
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  color: #111;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.login-btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.hint {
  margin-top: 18px;
  font-size: 12px;
  color: #9aa4b2;
}

.hint span {
  color: #ff9800;
  font-weight: 600;
}

/* ريسپونسيف */
@media screen and (max-width: 480px) {
  .login-card {
    padding: 30px 20px;
  }

  .logo-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  h1 {
    font-size: 20px;
  }

  .subtitle {
    font-size: 13px;
  }

  .field input,
  .field select {
    padding: 12px 36px 12px 12px;
    font-size: 13px;
  }

  .login-btn {
    padding: 14px;
    font-size: 15px;
  }
}
