/* Estrutura geral */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.login-box {
  display: flex;
  background: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 960px;
  flex-wrap: wrap;
}

/* Seções */
.form-section, .info-section {
  flex: 1;
  padding: 2rem;
  color: #e0e0e0;
}

/* Formulário */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.logo-login {
  width: 220px;
  margin: 0 auto 2rem;
  display: block;
}

/* Inputs */
.form-item {
  position: relative;
}

.form-item i {
  position: absolute;
  left: 10px;
  top: 12px;
  color: #999;
}

.form-item input {
  width: 100%;
  padding: 12px 12px 12px 36px;
  background: #222;
  border: 1px solid #444;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
}

/* Botões */
.button-panel {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-login,
.btn-register {
  flex: 1;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}

.btn-login {
  background: linear-gradient(to right, #00c896, #0099ff);
}

.btn-register {
  background: linear-gradient(135deg, #ffcc00, #ffaa00);
  color: #000;
  border: none;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
  transition: all 0.3s ease;
}

/* Mensagem institucional */
.info-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00ffb7;
}

.info-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
  .login-box {
    flex-direction: column;
  }

  .form-section, .info-section {
    padding: 1.5rem;
  }

  .info-section h2 {
    text-align: center;
    font-size: 1.25rem;
  }

  .info-section p {
    text-align: center;
    font-size: 0.95rem;
  }

  .logo-login {
    width: 180px;
    margin-bottom: 1.5rem;
  }
}

.right {
  float: right;
  width: 150px;
}
.left {
  float: left;
  width: 150px;
}
.btn-clube-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.btn-clube {
  display: inline-block;
  background: linear-gradient(135deg, #2e2e2e, #4a4a4a); /* gradiente cinza escuro */
  color: #f1f1f1;
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-clube:hover {
  background: linear-gradient(135deg, #3a3a3a, #5a5a5a); /* gradiente cinza mais claro */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}