/* Layout geral */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at center, #370a0a, #1a0202);
}

.container-login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 40px;
  gap: 60px;
  background: radial-gradient(circle at center, #370a0a, #1a0202);
}

/* Painel esquerdo */
.left-panel {
  max-width: 500px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  color: #fff;
}

.left-panel h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #FFD700;
}

.left-panel p {
  font-size: 18px;
  max-width: 420px;
  line-height: 1.6;
  color: #f0e7d3;
}

/* Cartão de login */
.login-card {
  width: 370px;
  background-color: #2c0d0d;
  padding: 12px 25px;
  border-radius: 12px;
  border-top: 6px solid #d48b00;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  text-align: center;
}

.logo {
  width: 320px;
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  box-sizing: border-box;
}

/* Botões */
.btn-primary, .btn-secondary {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}

.btn-primary {
  background-color: #FFD700;
  color: black;
}

.btn-primary:hover {
  background-color: #e0c000;
}

.btn-secondary {
  background-color: #444;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #666;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #2c0d0d;
  margin: 8% auto;
  padding: 30px;
  border-radius: 10px;
  border-top: 5px solid #d48b00;
  width: 360px;
  color: white;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.modal-content input {
  margin-bottom: 12px;
}

.close {
  color: #fff;
  float: right;
  font-size: 26px;
  font-weight: bold;
  margin-top: -10px;
  cursor: pointer;
}

/* Senha com botão de visualização */
.senha-container {
  position: relative;
}

.senha-container input {
  width: 100%;
  padding-right: 35px;
}

.senha-container .toggle-senha {
  position: absolute;
  right: 10px;
  top: 12px;
  cursor: pointer;
  color: #FFD700;
}
