* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: rgb(51,51,51);
  color: white;
  min-height: 100vh;
}

.login-page {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

.left-side {
  flex: 0.30;
  background: rgb(27, 27, 27);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-logo {
  width: 350px;
  object-fit: contain;
}
.login-image {
  width: auto;
  height: 100%;
}

.right-side {
  flex: 0.70;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.login-container {
  width: 100%;
  max-width: 450px;
}

.login-title {
  color: rgb(241,241,241);
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.login-title2 {
  color: rgb(145,145,145);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.form-group-icon {
  display: flex;
  align-items: center;
  background-color: rgb(100, 100, 100);
  border-radius: 5px;
  margin-bottom: 20px;
  overflow: hidden;
}

.form-control-icon::placeholder {
  color: #cccccc; /* ou qualquer cor que quiser */
  opacity: 1;     /* evita que fique transparente demais */
}

.icon-box {
  width: 10%;
  text-align: center;
  color: rgb(0, 145, 255);
}

.form-control-icon {
  width: 80%;
  height: 45px;
  border: none;
  outline: none;
  padding: 12px;
  font-size: 1em;
  background-color: transparent;
  color: white;
}

.login-button {
  width: 100%;
  height: 45px;
  padding: 12px;
  font-size: 1em;
  font-weight: bold;
  color: white;
  background-color: rgb(0, 145, 255);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  margin-top: 10px;
}

.login-button:hover {
  background-color: #0026ff;
}

.flashes {
  text-align: center;
  margin-bottom: 15px;
}

.flash-message {
  color: rgb(0, 145, 255);
  font-size: 0.9em;
}

.login-links {
  text-align: center;
  margin-top: 20px;
}

.login-links a {
  color: rgb(145,145,145);
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9em;
}

.login-links a:hover {
  text-decoration: underline;
  color: rgb(0, 145, 255);
}

.text-danger {
  color: rgb(0, 145, 255);
  font-size: 0.7rem;
  width: 60%;
  height: 30px;
  justify-content: left;
  display: flex;
  padding: 0;
  margin: 10px auto;
}

.politica-texto {
  text-align: center;
  font-size: 0.75rem; /* pequeno */
  color: #888;        /* cinza claro */
  margin-bottom: 10px;
}

.politica-texto a {
  color: #888;
  text-decoration: underline;
}

.politica-texto a:hover {
  color: #555;
}


/* Responsivo */
@media (max-width: 1024px) {
  .left-side {
    flex: 0;
    display: none;
  }
  
  .right-side {
    flex: 1;
  }
  
  .login-title {
    font-size: 1.5em;
  }
}
