* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Aileron, sans-serif;
  background-color: #141414;
  color: white;
  height: 100vh;
  overflow: hidden;
}

/* Hero Section */
.login-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.fade-bottom {
  position: absolute;
  bottom: 0;
  height: 300px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #141414);
  z-index: 2;
}

/* Login Container */
.login-container {
  position: relative;
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.logo-login {
  height: 30px;
  margin-bottom: 20px;
}
.login-container h1 {
  margin-bottom: 25px;
  font-size: 1.8rem;
}
.login-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.login-container input {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #222;
  color: white;
  font-size: 1rem;
}
.login-container input::placeholder {
  color: #aaa;
}
.login-container button {
  padding: 12px;
  background-color: #e50914;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-container button:hover {
  background-color: #ff0a16;
}
.register-text {
  margin-top: 10px;
  font-size: 0.9rem;
}
.register-text a {
  color: #e50914;
  text-decoration: none;
}
.modal-sucesso {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-sucesso .modal-conteudo {
  background-color: #141414;
  border: 2px solid #2ecc71;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: white;
  font-size: 1.2rem;
  animation: fadeInScale 0.4s ease;
}

.modal-sucesso .checkmark {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #2ecc71;
}

@keyframes fadeInScale {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
