/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('img/acrocis_back.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px;
}

.container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #cce0ff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #003366; /* Azul escuro */
  font-weight: 700;
}

.input-boxes {
  width: 100%;
}

.input-box {
  position: relative;
  margin-bottom: 15px;
}

.input-box i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #003366; /* Azul escuro */
}

.input-box input {
  width: 100%;
  padding: 15px 45px;
  border: 2px solid #003366; /* Azul escuro */
  border-radius: 8px;
  font-size: 16px;
  background-color: #f5faff; /* Azul muito claro */
  color: #333;
  transition: all 0.3s ease;
}

.input-box input:focus {
  border-color: #0066cc; /* Azul claro */
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 8px rgba(0, 102, 204, 0.3);
}

.button input {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  background-color: #0066cc; /* Azul claro */
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input:hover {
  background-color: #004d99; /* Azul mais escuro */
  box-shadow: 0 4px 8px rgba(0, 77, 153, 0.3);
}

.message-box {
  margin-top: 20px;
}

.message {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.back-to-login {
  margin-top: 20px;
}

.back-to-login a {
  color: #0066cc; /* Azul claro */
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.back-to-login a:hover {
  text-decoration: underline;
  color: #004d99; /* Azul mais escuro */
}


/* Estilos para a caixa de mensagem */
.message-box {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

/* Mensagem de sucesso */
.message-box.success {
  background-color: #d4edda; /* Verde claro */
  border: 1px solid #c3e6cb;
  color: #155724; /* Verde escuro */
}

/* Mensagem de erro */
.message-box.error {
  background-color: #f8d7da; /* Vermelho claro */
  border: 1px solid #f5c6cb;
  color: #721c24; /* Vermelho escuro */
}

.message {
  margin: 0;
}

@media (max-width: 730px) {

  body {
    background-image: url('img/acrocis_back_movel_adv.png');
  }

  .container {
    padding: 20px;
  }
}