/*
  /pages/Login.css
*/
:root {
  --bg1: #06142B;          /* azul profundo */
  --bg2: #0B3A67;          /* azul médio */
  --aqua: #23C7FF;         /* ciano água */
  --aqua2: #38E6D3;        /* verde-água */
  --sun: #FF7A18;          /* laranja pôr do sol */
  --sun2: #FFB000;         /* amarelo quente */

  --text: #0B1220;
  --muted: rgba(11,18,32,0.62);

  --card-bg: rgba(255,255,255,0.72);
  --card-border: rgba(255,255,255,0.35);

  --ring: rgba(35,199,255,0.35);

  --danger-bg: rgba(176,0,32,0.08);
  --danger: #B00020;
}

#root {
  height: 100%;
}

.hp-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #5791e0;
  font-family: Tahoma, Geneva, Verdana, sans-serif;
}

.hp-wrap {
  width: 460px;
  max-width: 92vw;
  position: relative;
  z-index: 2;
}

.hp-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 22px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    0 8px 20px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hp-header {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.hp-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-logo {
  width: 150px;
  height: 150px;
}

.hp-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: #071223;
}

.hp-subtitle {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(7,18,35,0.65);
}

.hp-field {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.hp-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(7,18,35,0.75);
}

.hp-input {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(7,18,35,0.14);
  background: rgba(255,255,255,0.85);
  font-size: 14px;
  outline: none;
  transition: box-shadow 120ms ease, border-color 120ms ease;
}

.hp-input:focus {
  border-color: rgba(35,199,255,0.55);
  box-shadow: 0 0 0 4px var(--ring);
}

.hp-error {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(176,0,32,0.16);
  background: var(--danger-bg);
  color: var(--danger);
  font-size: 13px;
  font-weight: 700;
}

.hp-actions {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.hp-btn {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid #ffffff;
  background: transparent;
  color: white;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 150ms ease,
    transform 120ms ease,
    filter 150ms ease;
}

.hp-btn:hover {
  background: #ff8533;
}

.hp-btn:active {
  transform: scale(0.98);
}

.hp-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
