/* /public/css/login.css */

body.login-page {
  background: linear-gradient(
    135deg,
    #ece9e6 0%,
    #ffffff 100%
  ); /* Fundo Clean */
  /* Se quiser algo mais "Gamer/Dark", troque por: background: #1a1a2e; */
  font-family: "Montserrat", sans-serif;
}

.login-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Sombra suave */
  width: 100%;
  max-width: 400px; /* Tamanho máximo da caixa */
}

.login-header h3 {
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}

.login-header p {
  color: #777;
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.form-control {
  height: 45px;
  padding-left: 15px;
  border-radius: 8px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
}

.form-control:focus {
  background-color: #fff;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

.btn-login {
  width: 100%; /* Botão ocupa tudo */
  height: 45px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 15px;
  background-color: #007bff;
  border: none;
  transition: background 0.3s;
}

.btn-login:hover {
  background-color: #0056b3;
}

/* Estilos para o checkbox "Lembrar-me" */
.form-group .icheckbox_square-blue {
  margin-right: 8px;
}

.form-group label[for="remember"] {
  cursor: pointer;
  margin-bottom: 0;
}

.links-uteis {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.links-uteis a {
  display: block;
  color: #555;
  margin-bottom: 5px;
  text-decoration: none;
}

.links-uteis a:hover {
  color: #007bff;
  text-decoration: underline;
}

.links-uteis a.register-link {
  font-weight: bold;
}
