* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #0f172a;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTAINER */
.login-container {
  width: 100%;
  max-width: 400px;
  background: #1e293b;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 225, 255, 0.08);
  border: 1px solid rgba(0, 225, 255, 0.1);
}

/* TITULO */
.login-title {
  color: white;
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

/* INPUTS */
.login-input-box {
  margin-bottom: 20px;
}

.login-input-box label {
  color: #cbd5e1;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.login-input {
  width: 100%;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #334155;
  color: white;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

.login-input:focus {
  border-color: #00e1ff;
  box-shadow: 0 0 10px rgba(0, 225, 255, 0.2);
}

/* SENHA BOX */
.senha-box {
  position: relative;
}

.senha-box input {
  width: 100%;
  padding: 14px;
  padding-right: 40px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #334155;
  color: white;
  outline: none;
  transition: 0.3s;
}

.senha-box input:focus {
  border-color: #00e1ff;
  box-shadow: 0 0 10px rgba(0, 225, 255, 0.2);
}

.eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #94a3b8;
  transition: 0.2s;
}

.eye:hover {
  color: #00e1ff;
}

/* BOTÃO */
.login-button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #00e1ff, #3b82f6);
  color: black;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 15px;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 225, 255, 0.25);
}

/* FOOTER */
.login-footer {
  margin-top: 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}

.login-footer a {
  color: #00e1ff;
  text-decoration: none;
}