* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #4a6fa5, #2f3e46);
  display: flex;
  align-items: center;
  justify-content: center;
}

header {
  position: absolute;
  top: 20px;
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
}

.login-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.login-container h2 {
  margin-bottom: 20px;
  color: #2f3e46;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  font-size: 14px;
  color: #555;
}

.form-group input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 40px;
}

#toggleSenha {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
}

button {
  width: 100%;
  padding: 12px;
  background: #102f5e;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #3874c7;
}

.footer-text {
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}

.container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  width: 600px;
  max-width: 90%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.container h1 {
  color: #2f3e46;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 14px;
}

.content {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  width: 150px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: left;
}

.card h3 {
  margin-bottom: 10px;
  color: #4a6fa5;
}

.card p {
  font-size: 13px;
  color: #555;
}