body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #C81433, #8F0D23);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* CARD */
.box {
  background: white;
  padding: 35px;
  border-radius: 12px;
  width: 340px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  text-align: center;
}

/* LOGOS */
.logos {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.logos img {
  height: 70px;
}

/* TÍTULO */
h2 {
  margin-bottom: 20px;
  font-weight: 600;
}

/* INPUT BOX */
.input-box {
  position: relative;
  width: 100%;
  margin-top: 12px;
}

/* INPUT */
.input-box input {
  width: 100%;
  padding: 12px 40px 12px 38px;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  font-size: 14px;
}

/* FOCO */
.input-box input:focus {
  outline: none;
  border-color: #C81433;
  box-shadow: 0 0 0 3px rgba(200,20,51,0.15);
}

/* ÍCONE ESQUERDO */
.input-box i:first-child {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

/* ÍCONE OLHO */
.toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
}

.toggle:hover {
  color: #C81433;
}

/* BOTÕES */
button {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #C81433, #a51028);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(200,20,51,0.3);
}

button:active {
  transform: scale(0.97);
}

/* BOTÃO CADASTRO */
button:nth-of-type(2) {
  background: linear-gradient(135deg, #666, #444);
}

/* MENSAGEM */
.msg {
  margin-top: 15px;
  font-size: 13px;
  color: #555;
  min-height: 18px;
}

.info-cadastro {
  margin-top: 15px;
  font-size: 13px;
  color: #666;
  text-align: center;
  line-height: 1.4;
}

.info-cadastro strong {
  color: #333;
}
