/* =============================
   RESET BÁSICO
============================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
}

/* =============================
   BODY / LAYOUT
============================= */
body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;

    background-color: #000;
    /* fallback */
    overflow: hidden;

    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
}

/* =============================
   CONTAINER
============================= */
.bg-container {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

/* imagem */
.bg-image {

  height: 100%;
  object-fit: cover;
}

/* DEGRADÊ DE TRANSIÇÃO */
.bg-container::after {
  content: "";
  position: absolute;
  inset: 0;

  /* degradê da imagem → preto */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.692) 70%,
    rgb(0, 0, 0) 85%,
    #000 100%
  );

  pointer-events: none;
}

/* =============================
   CONTAINER LOGIN — GLASS
============================= */
.login-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 400px;
    padding: 36px 32px;
    margin-right: 6vw;

    border-radius: 20px;

    /* Glass effect */

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(20, 20, 25, 0.72);

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);


    text-align: center;

    animation: login-enter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================
   LOGO
============================= */
.login-logo {
  width: 78px;
  margin-bottom: 18px;

  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.55));

  animation: loginLogo 6s ease-in-out infinite;
  transform-origin: center;
}

/* animação de "chamadinha" sutil */
@keyframes loginLogo {
  0% {
    transform: rotate(0deg);
  }

  92% {
    transform: rotate(0deg);
  }

  94% {
    transform: rotate(-6deg);
  }

  96% {
    transform: rotate(6deg);
  }

  98% {
    transform: rotate(-4deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* =============================
   TÍTULO
============================= */
.login-container h2 {
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
}

/* =============================
   BOTÃO GOOGLE
============================= */
.btn-google {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 16px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  background: linear-gradient(180deg, #ffffff, #f3f3f3);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.btn-google::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn-google:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.btn-google:hover::before {
  transform: translateX(120%);
}

.btn-google:active {
  transform: translateY(0) scale(0.97);

  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.35),
    inset 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* =============================
   SVG GOOGLE
============================= */
.google-icon {
    width: 20px;
    height: 20px;
}


/* =============================
   ANIMAÇÃO
============================= */
@keyframes login-enter {
    0% {
        opacity: 0;
        transform: translateX(60px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* =============================
   FOOTER / COPYRIGHT
============================= */
.login-footer {
    margin-top: 24px;

    font-size: 0.9rem;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.45);
    text-align: center;

    letter-spacing: 0.04em;
}

.login-footer strong {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

/* Link invisível (mantém estética) */
.vess-link {
    text-decoration: none;
    color: inherit;
}

.vess-link:hover {
    opacity: 0.85;
}