/* Container principal do formulário login */
.login-container {
  max-width: 480px;          /* maior largura para ficar mais amplo */
  margin: 60px auto 60px;
  padding: 30px 50px;        /* menos padding vertical, mantem horizontal */
  background-color: #151515; 
  border: 2px solid #00875a;
  border-radius: 16px;       /* cantos mais arredondados */
  box-shadow: 0 0 18px rgba(0, 135, 90, 0.6);
  color: #ddd;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Título do formulário */
.login-container h2 {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 2rem;
  color: #00b37e;
  user-select: none;
}

/* Texto restrito */
.login-container .restrita {
  text-align: center;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: #b9f3c1;
  user-select: none;
}

/* Labels */
.login-container label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #c8fadc;
  cursor: pointer;
}

/* Inputs email e senha */
.login-container input[type="email"],
.login-container input[type="password"] {
  width: 100%;
  padding: 10px 18px;    /* levemente mais alto que antes */
  margin-bottom: 20px;
  border: 2px solid #00875a;
  border-radius: 10px;
  background-color: #222;
  color: #d6fbd6;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  height: 42px;
  line-height: 1.2;
}

.login-container input[type="email"]:focus,
.login-container input[type="password"]:focus {
  border-color: #00b37e;
  outline: none;
  box-shadow: 0 0 12px #00b37e;
}

/* Opções lembrar e recuperar senha */
.login-opcoes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 24px;
  color: #b9f3c1;
}

.login-opcoes label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.login-opcoes input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: #00b37e;
  flex-shrink: 0;
}

.login-opcoes a {
  color: #00b37e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.login-opcoes a:hover,
.login-opcoes a:focus {
  color: #00e394;
  outline: none;
}

/* Botão login */
.btn-login {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #121212;
  background: linear-gradient(135deg, #00b37e 0%, #00e394 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 179, 126, 0.6);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  user-select: none;
}

.btn-login:hover,
.btn-login:focus {
  box-shadow: 0 10px 20px rgba(0, 227, 148, 0.8);
  transform: translateY(-2px);
  outline: none;
}
