/* ===== Reset & Fonts ===== */
/* NOTE: this file is loaded on every public page. The universal selector
   must not set font-family — as a direct declaration it defeats inheritance
   on every element, so nested spans fell back to Arial instead of Aspira.
   The brand face is set on body in header.css via var(--font-sans). */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main-container-login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 700px;
  background-position: top;
  background-color: #222222;
  background-image: url(images/background_image.png);
}

/* ===== Login Card ===== */
.login-container {
  background: #2d2d2d;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  width: 380px;
  padding: 40px 30px;
  text-align: center;
  border-top: 6px solid #F45B0F;
}

.login-container h1 {
  font-family: 'BorisBlackBloxx', sans-serif;
  background: linear-gradient(90deg, #F45B0F, #d44d0a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: bold;
}

.color-login-chnage {
  font-family: 'BorisBlackBloxx', sans-serif;
  color: #ffffff;
}

.login-container p {
  color: #808080;
  font-size: 14px;
  margin-bottom: 30px;
}

/* ===== Input Fields ===== */
.login-container input {
  width: 100%;
  padding: 12px 15px;
  margin: 12px 0;
  border-radius: 50px;
  border: 1px solid #444;
  font-size: 14px;
  background: #333;
  color: #ffffff;
}

.login-container input::placeholder {
  color: #808080;
}

.login-container input:focus {
  border-color: #F45B0F;
  outline: none;
  box-shadow: 0 0 6px rgba(244, 91, 15, 0.4);
}

/* ===== Button ===== */
.login-btn {
  width: 100%;
  background: linear-gradient(90deg, #F45B0F, #d44d0a);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.3s;
}

.login-btn:hover {
  background: #F45B0F;
}

/* ===== Footer Links ===== */
.login-container .links {
  margin-top: 20px;
  font-size: 13px;
  color: #808080;
}

.login-container .links a {
  background: linear-gradient(90deg, #F45B0F, #d44d0a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  font-weight: bold;
}

.login-container .links a:hover {
  text-decoration: underline;
}
