/* Reset básico */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; }

.center {
  display: grid;
  place-items: center;
  background: #0f172a;
  color: #0b1022;
  padding: 24px;
}

.card{
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);}
    

h1 { margin: 0 0 16px 0; font-size: 24px; color: #0b1022; }

label { display: block; margin: 12px 0 6px; font-size: 14px; color: #1f2937; }
input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
}
input:focus { border-color: #6366f1; box-shadow: 0 0 0 3px rgba(99,102,241,.15); }

button {
  width: 100%;
  margin-top: 16px;
  padding: 12px 16px;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  background: #6366f1;
  color: #fff;
}
button:hover { opacity: .95; }

.alert { background: #fee2e2; color: #7f1d1d; padding: 10px 12px; border-radius: 10px; margin-bottom: 12px; }
.alert.success { background: #dcfce7; color: #14532d; }

.muted { color: #6b7280; font-size: 14px; }
.muted a { color: #6366f1; text-decoration: none; }
.muted a:hover { text-decoration: underline; }

.topbar {
  background: #111827;
  color: white;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar a { color: #cbd5e1; text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }

.container { max-width: 1000px; margin: 20px auto; padding: 0 16px; }
.box {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  
  }
  

.card-logo {
  display: flex;
  justify-content: center;
  margin: 0 0 12px;
}
.card-logo img {
  max-width: 50px;  /* ajuste o tamanho se quiser */
  height: auto;
}
.signature { text-align: right; font-size: 12px; color: #6b7280; margin-top: 10px; }
