:root {
  --metro-red: #e02020;
  --metro-card: #ffffff;
  --metro-text: #111111;
  --metro-muted: #777777;
  --radius-card: 24px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Space Grotesk", sans-serif;
  background: #ffffff;
  color: var(--metro-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 24px;
}

.page {
  max-width: 1120px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin: auto 0;
}

.profile-card {
  background: var(--metro-card);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.logo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.logo-wrap img { width: 100%; height: 100%; object-fit: cover; }

.badges { display: flex; gap: 14px; align-items:center; }
.badge-fpf { height: 38px; }
.badge-cbf { height: 47px; }
.badge-formador { height: 40px; }

.club-name { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.club-description { list-style: none; margin-bottom: 16px; }
.club-description li { margin: 6px 0; color: var(--metro-muted); font-size: 15px; }

.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  border: 1px solid rgba(224, 32, 32, 0.28);
  background: rgba(224, 32, 32, 0.06);
  color: #555;
  text-transform: uppercase;
}

.login-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-title { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.login-subtitle { font-size: 14px; color: var(--metro-muted); margin-bottom: 24px; }

.form-group { margin-bottom: 16px; position: relative; }
.form-label { display:block; font-size:13px; margin-bottom:6px; font-weight:500; }
.form-input {
  width:100%; padding:10px 14px; border-radius:999px;
  border:1px solid rgba(0,0,0,0.10); font-size:14px; background:#fafafa;
}
.form-input:focus {
  border-color: var(--metro-red);
  box-shadow: 0 0 0 2px rgba(224, 32, 32, 0.15);
  background:#fff;
  outline: none;
}

.login-actions {
  display:flex;
  align-items: center;
  justify-content:space-between;
  margin-bottom:18px;
  flex-wrap:wrap;
  gap:8px;
}
.remember-wrap {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color: var(--metro-muted);
}
.remember-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.2);
  accent-color: var(--metro-red);
}
.forgot-link {
  color:var(--metro-red);
  font-size:13px;
  text-decoration:none;
  font-weight:500;
  white-space: nowrap;
}
.forgot-link:hover {
  text-decoration: underline;
}

.btn-primary {
  width:100%; padding:12px 18px; border-radius:999px;
  background:var(--metro-red); color:#fff; font-weight:600;
  border:none; cursor:pointer; transition:.2s; margin-bottom: 28px;
}
.btn-primary:hover { transform:translateY(-1px); box-shadow:0 14px 35px rgba(224, 32, 32, 0.35); }

.login-help { font-size:13px; color:var(--metro-muted); text-align:center; }

.footer {
  width:100%; text-align:center; font-size:14px; color:#999;
  margin-top:auto; padding-top:40px; padding-bottom:10px;
}

@media(max-width:850px){
  .page{grid-template-columns:1fr;}
}

/* --- NOVAS CLASSES PARA SUBSTITUIR OS ESTILOS INLINE --- */
.mt-12 { margin-top: 12px; }

.msg-erro {
  display: none;
  font-size: 13px;
  color: #b00020;
  margin-bottom: 14px;
  text-align: center;
}

.input-senha {
  padding-right: 85px;
}

.btn-toggle-senha {
  position: absolute;
  right: 16px;
  top: calc(50% + 12px);
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--metro-red);
  cursor: pointer;
  font-weight: 600;
}