body {
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-container {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.logo {
  width: 220px;       /* ajuste conforme necessário */
  height: auto;
  margin-bottom: 10px;
}


.login-left {
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.login-left i {
  font-size: 80px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.login-left h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.login-left p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

.login-right {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-header {
  margin-bottom: 40px;
}

.login-header h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.login-header p {
  color: #666;
  font-size: 14px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px 14px 45px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #1800ad;
  box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.1);
}

.btn-login {
  width: 100%;
  padding: 16px;
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 74, 173, 0.3);
}

.btn-login:active {
  transform: translateY(0);
}

.btn-login:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.error-message {
  background: #ffe5e5;
  color: #c00;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
}

.error-message.show {
  display: block;
}

@media (max-width: 768px) {
  .login-container {
    grid-template-columns: 1fr;
  }

  .login-left {
    padding: 40px 30px;
    min-height: auto;
  }

  .login-left h1 {
    font-size: 24px;
  }

  .login-right {
    padding: 40px 30px;
  }
}

/* ==============================
    FOOTER FIXO (Direitos Autorais)
============================== */
.fixed-footer-copyright {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    color: #ffffff;
    font-size: 12px;
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    z-index: 101; 
}

/* Opcional: Para resetar qualquer estilo de parágrafo dentro */
.fixed-footer-copyright p {
    margin: 0;
}

        /* Estilos para o botão flutuante do WhatsApp */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px; /* Distância do fundo da tela */
    right: 40px; /* Distância da lateral direita da tela */
    background-color: #25d366; /* Cor de fundo do WhatsApp */
    color: #FFF;
    border-radius: 80px; /* Deixa o botão circular */
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000; /* Garante que fique acima de outros elementos */
    transition: background-color 0.3s, transform 0.3s;
}

.float-whatsapp:hover {
    background-color: #1DA851; /* Cor um pouco mais escura ao passar o mouse */
    transform: scale(1.05); /* Efeito sutil de zoom ao passar o mouse */
}