body {
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.card {
  background: white;
  width: 100%;
  max-width: 400px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  text-align: center;
  box-sizing: border-box;
}

.logo {
  width: 160px;
  margin-bottom: 25px;
}

h2 {
  margin-bottom: 25px;
  font-size: 22px;
  color: #222;
}

.input-group {
  text-align: left;
  margin-bottom: 18px;
}

.input-group label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #444;
}

.input-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
  transition: 0.2s;
}

.input-group input:focus {
  border-color: #2a72e5;
  outline: none;
}

/* Corrige a linha com dois campos pequenos */
.row {
  display: flex;
  gap: 12px; /* espaçamento uniforme entre os inputs */
  margin-bottom: 18px; /* igual aos outros inputs */
}

.row .small {
  flex: 1;           /* cada input ocupa metade do espaço disponível */
  min-width: 0;      /* evita overflow */
}

.btn {
  width: 100%;
  background: #2a72e5;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  background: #245bb5;
}

.message {
  margin-top: 18px;
  font-size: 15px;
  min-height: 20px;
  color: #d8000c;
}