:root{
    --white:#ffffff;
    --beige:#e6e3dc;
    --gray:#cfcfcf;
    --orange:#ff7a18;
}

body{
    background:#0f0f12;
    color:var(--white);
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

/* FUNDO GRID */
.cyber-grid {
    position:fixed;
    inset:0;
    z-index:-1;
    background-image:
        linear-gradient(rgba(255,122,24,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,122,24,.08) 1px, transparent 1px);
    background-size:50px 50px;
    mask-image:linear-gradient(to bottom, black 70%, transparent 100%);
}

.cyber-grid::before{
    content:"";
    position:absolute;
    top:-150px;
    right:-150px;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(255,122,24,.45), transparent 70%);
    filter:blur(120px);
}

/* CARD */
.card{
    background:rgba(255,255,255,.07);
    backdrop-filter:blur(14px);
    border:none;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{
    from{opacity:0; transform:translateY(20px)}
    to{opacity:1; transform:none}
}

/* TEXTOS */
h4, h3, h2, h1{
    color:var(--white);
}

.text-secondary{
    color:var(--beige)!important;
}

/* INPUTS */
.form-control{
    background:rgba(255,255,255,.12);
    border:none;
    color:var(--white);
}

.form-control::placeholder{
    color:var(--gray);
}

.form-control:focus{
    background:rgba(255,255,255,.18);
    box-shadow:none;
    color:var(--white);
}

/* PASSWORD TOGGLE */
.input-group-text{
    background:rgba(255,255,255,.12);
    border:none;
    cursor:pointer;
    color:var(--white);
}

/* BOTÃO */
.btn-primary{
    background:linear-gradient(135deg,#ff7a18,#ff9f1a);
    border:none;
    color:#000;
    font-weight:600;
}

.btn-primary:hover{
    opacity:.92;
}

/* LINKS */
.link-orange{
    color:#ff9f4a;
    cursor:pointer;
}

.link-orange:hover{
    color:#ffc48a;
}

/* ERRO */
#msg{
    color:#ffb4b4;
}


.terms-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  
    background: linear-gradient(
      135deg,
      rgba(255,122,24,.12),
      rgba(255,255,255,.03)
    );
  
    border: 1px solid rgba(255,122,24,.35);
    border-radius: 14px;
    padding: 14px 16px;
  
    font-size: .85rem;
    line-height: 1.45;
    color: #f2e6d8;
  
    transition: border .3s ease, box-shadow .3s ease;
  }
  
  .terms-box:hover {
    border-color: rgba(255,122,24,.6);
    box-shadow: 0 8px 22px rgba(255,122,24,.15);
  }
  
  /* LINKS */
  .terms-box a {
    color: #ff9b50;
    text-decoration: none;
    font-weight: 500;
  }
  
  .terms-box a:hover {
    text-decoration: underline;
  }
  
  .google-premium-small {
  color: #ff7a18;           /* laranja principal do site */
  font-weight: 500;
  font-size: 0.9rem;        /* menorzinho */
  letter-spacing: 0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  position: relative;
}

.google-premium-small::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background-color: #ff7a18; /* linha laranja fina */
  border-radius: 1px;
  transition: width 0.25s ease;
}

.google-premium-small:hover::after {
  width: 100%;             /* sublinhado animado */
}

.google-premium-small:hover {
  color: #ffa343;          /* laranja mais claro ao passar o mouse */
}

.google-premium-small i {
  font-size: 1rem;         /* menor ícone */
  transition: transform 0.2s ease;
}

.google-premium-small:hover i {
  transform: translateY(-1px); /* leve movimento */
}
