/* ===========================
   PÁGINA DE CONTA / LOGIN
=========================== */
.conta-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  padding: 0 16px 48px;
}

.conta-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 0 32px;
}

.conta-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.conta-hero p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}

/* CARD */
.conta-card {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  padding: 28px 24px 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ABAS */
.conta-abas {
  display: flex;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.conta-aba {
  flex: 1;
  background: #fff;
  border: none;
  padding: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.conta-aba.active {
  background: #f5f5f5;
  color: #111;
  font-weight: 600;
}

.conta-aba:first-child {
  border-right: 1.5px solid #ddd;
}

/* FORM */
.conta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.conta-form.hidden {
  display: none;
}

.campo {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.campo label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
}

.campo input {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  background: #fafafa;
}

.campo input:focus {
  border-color: var(--green);
  background: #fff;
}

.input-senha-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-senha-wrap input {
  padding-right: 42px;
}

.toggle-senha {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 1rem;
  padding: 4px;
  transition: color 0.2s;
}

.toggle-senha:hover {
  color: #555;
}

/* BOTÃO SUBMIT */
.btn-submit {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  margin-top: 4px;
}

.btn-submit:hover {
  background: var(--dark-green);
}

/* LINK ESQUECI */
.link-esqueci {
  text-align: center;
  font-size: 0.88rem;
  color: var(--green);
  display: block;
  margin-top: 4px;
  transition: opacity 0.2s;
}

.link-esqueci:hover {
  opacity: 0.7;
}

/* RECUPERAR SENHA */
.recuperar-titulo {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

.recuperar-desc {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 20px;
}

.msg-sucesso {
  text-align: center;
  padding: 24px 0;
}

.msg-sucesso.hidden {
  display: none;
}

.msg-sucesso i {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 12px;
}

.msg-sucesso p {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}
