/* ===== ESTILO KPA - RECUPERAR SENHA ===== */

/* HERDA ESTILOS BASE DO LOGIN */
.kpa-recuperar-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 20px;
}

.kpa-recuperar-card {
  width: 450px;
  max-width: 100%;
  background: #ffffff;
  padding: 45px;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  text-align: center;
}

/* TÍTULOS */
.kpa-recuperar-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.kpa-recuperar-title span {
  color: #e30613;
}

.kpa-recuperar-subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

/* INPUT */
.kpa-recuperar-card .kpa-input-group {
  margin-bottom: 25px;
  text-align: left;
}

.kpa-recuperar-card .kpa-input-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.kpa-recuperar-card .kpa-input-group input {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.2s;
}

.kpa-recuperar-card .kpa-input-group input:focus {
  border-color: #e30613;
  outline: none;
  box-shadow: 0 0 0 2px rgba(227,6,19,0.1);
}

/* BOTÃO */
.kpa-recuperar-button {
  width: 100%;
  padding: 16px;
  background: #e30613;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin: 10px 0 20px 0;
}

.kpa-recuperar-button:hover {
  background: #c10510;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(227,6,19,0.2);
}

/* LINKS */
.kpa-recuperar-links {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
}

.kpa-recuperar-links a {
  color: #e30613;
  text-decoration: none;
  font-weight: 500;
  margin: 0 5px;
  transition: all 0.2s;
}

.kpa-recuperar-links a:hover {
  text-decoration: underline;
}

.kpa-recuperar-links .separator {
  color: #ccc;
}

/* MENSAGEM DE SUCESSO */
.kpa-recuperar-mensagem {
  margin-top: 30px;
  padding: 20px;
  background: #f0fff4;
  border: 1px solid #22c55e;
  border-radius: 8px;
  color: #166534;
  font-size: 14px;
  line-height: 1.6;
}

.kpa-recuperar-mensagem p {
  margin: 5px 0;
}

/* RESPONSIVO */
@media (max-width: 480px) {
  .kpa-recuperar-card {
    padding: 30px 20px;
  }
  
  .kpa-recuperar-title {
    font-size: 24px;
  }
  
  .kpa-recuperar-button {
    padding: 14px;
    font-size: 14px;
  }
}