* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Century Gothic", Arial, sans-serif;
  background: linear-gradient(135deg, #eef2f7 0%, #f8fafc 100%);
  color: #0C1F2D;
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 36px;
  box-shadow: 0 18px 45px rgba(12, 31, 45, 0.14);
  border: 1px solid #e5e7eb;
}

.login-header {
  text-align: center;
  margin-bottom: 28px;
}

.login-header h1 {
  margin: 0;
  line-height: 1.2;
}

.brand-certmed {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.brand-certmed span {
  color: #0C1F2D;
}

.brand-certmed strong {
  color: #F28C38;
  font-weight: 800;
}

.login-header p {
  margin: 10px 0 0;
  font-size: 14px;
  color: #12334D;
  font-weight: 700;
}

.login-header small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #1E5A7A;
  letter-spacing: 0.4px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-form label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #12334D;
}

.login-form input {
  width: 100%;
  height: 42px;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  font-family: "Century Gothic", Arial, sans-serif;
  font-size: 14px;
  color: #0C1F2D;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.login-form input:focus {
  border-color: #1E5A7A;
  box-shadow: 0 0 0 3px rgba(30, 90, 122, 0.14);
}

.senha-wrapper {
  position: relative;
  width: 100%;
}

.senha-wrapper input {
  padding-right: 48px;
}

button {
  width: 100%;
  height: 44px;
  margin-top: 10px;
  border: none;
  border-radius: 9px;
  font-family: "Century Gothic", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: #0C1F2D;
  color: #ffffff;
  transition: transform 0.12s ease, filter 0.12s ease, background 0.12s ease;
}

button:hover {
  filter: brightness(1.05);
}

button:active {
  transform: translateY(1px);
}

button.secondary {
  background: #F28C38;
  color: #ffffff;
}

.btn-olho {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 34px;
  height: 30px;
  margin: 0;
  padding: 0;
  border-radius: 7px;
  background: transparent;
  color: #12334D;
  font-size: 15px;
}

.btn-olho:hover {
  background: rgba(30, 90, 122, 0.08);
  filter: none;
}

.link-button {
  height: auto;
  margin-top: 4px;
  padding: 6px 4px;
  background: transparent;
  color: #1E5A7A;
  text-decoration: underline;
  font-size: 13px;
}

.link-button:hover {
  background: transparent;
  color: #F28C38;
  filter: none;
}

.mensagem {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
  color: #4b5563;
}

.mensagem.erro {
  color: #b91c1c;
}

.mensagem.ok {
  color: #15803d;
}

.reset-form {
  margin-top: 8px;
}

.reset-title {
  margin: 0 0 6px;
  text-align: center;
  font-weight: 700;
  color: #12334D;
}

.oculto {
  display: none;
}

@media (max-width: 480px) {
  .login-card {
    padding: 28px 22px;
  }

  .brand-certmed {
    font-size: 30px;
  }
}
