@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #050505;
  overflow: hidden;
  color: #fff;
}

.background {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, #8a6b18 0%, transparent 25%),
    radial-gradient(circle at bottom right, #6d5312 0%, transparent 25%),
    linear-gradient(135deg, #050505, #111, #050505);
}

.background::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #d4af37 0%, transparent 70%);
  opacity: 0.08;
  top: -300px;
  right: -250px;
}

.background::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #d4af37 0%, transparent 70%);
  opacity: 0.05;
  bottom: -250px;
  left: -250px;
}

.login-container {
  position: relative;
  z-index: 5;
  width: 420px;
  padding: 45px;
  border-radius: 22px;

  background: rgba(18, 18, 18, 0.75);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(212, 175, 55, 0.25);

  box-shadow:
    0 0 50px rgba(0, 0, 0, 0.65),
    0 0 20px rgba(212, 175, 55, 0.08);
}

.logo {
  text-align: center;
  margin-bottom: 35px;
}

.shield {
  font-size: 52px;
  margin-bottom: 10px;
}

.logo h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #d4af37;
}

.logo p {
  margin-top: 8px;
  color: #bdbdbd;
  font-size: 15px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
}

.input-group input {
  height: 54px;

  padding: 0 18px;

  border-radius: 12px;

  border: 1px solid rgba(212, 175, 55, 0.15);

  background: #121212;

  color: white;

  outline: none;

  transition: 0.25s;
}

.input-group input::placeholder {
  color: #666;
}

.input-group input:focus {
  border-color: #d4af37;

  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.remember {
  display: flex;
  gap: 8px;
  color: #ccc;
  align-items: center;
}

.options a {
  color: #d4af37;

  text-decoration: none;
}

.options a:hover {
  text-decoration: underline;
}

button {
  height: 55px;

  border: none;

  border-radius: 12px;

  background: linear-gradient(135deg, #b8860b, #d4af37, #f5d76e);

  color: #111;

  font-size: 16px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

button:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

.register {
  text-align: center;

  color: #aaa;

  margin-top: 10px;
}

.register a {
  color: #d4af37;

  text-decoration: none;

  font-weight: 600;
}

.register a:hover {
  text-decoration: underline;
}

@media (max-width: 500px) {
  .login-container {
    width: 92%;

    padding: 35px 25px;
  }

  .logo h1 {
    font-size: 28px;
  }
}
