body {
  background-color: #050505;
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow: hidden;
  position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 50%, black 120%);
    pointer-events: none;
}

.area-login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  z-index: 1;
}

.login {
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0a0a0a;
  border-radius: 15px;
  width: 365px;
  border: 1px solid #3d0000;
  box-shadow: 0 0 25px rgba(139, 0, 0, 0.4);
  padding: 25px;
}

.login form {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.login input {
  margin-top: 10px;
  background-color: #1a1a1a;
  padding-left: 10px;
  color: #d1d1d1;
  border: 1px solid #2a0000;
  height: 45px;
  outline: none;
  border-radius: 6px;
}

.login input:focus {
    border-color: #8b0000;
    box-shadow: 0 0 5px #8b0000;
}

.login img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 5px #8b0000);
}

.input::placeholder {
  color: #666;
  font-size: 14px;
}

form [type="submit"] {
  display: block;
  background-color: #990000;
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  cursor: pointer;
  margin-top: 25px;
  border: 2px solid #660000;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px black;
}

form [type="submit"]:hover {
    background-color: #cc0000;
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    transform: scale(1.02);
}

.input::placeholder, input::placeholder {
  color: #888 !important;
  font-size: 14px;
}

a {
  color: #8b0000;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
    color: #ff0000;
    text-shadow: 0 0 5px #ff0000;
}

h1 {
  color: #8b0000;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px black;
}