:root {
  --menu-gold-border: linear-gradient(
    135deg,
    #fff9e0 0%,
    #ffe566 18%,
    #ffd700 38%,
    #c9a01a 52%,
    #fff1a8 68%,
    #e6b800 82%,
    #b8860b 100%
  );
  --menu-gold-glow: 0 0 10px rgba(255, 215, 0, 0.35);
  --menu-panel-fill: linear-gradient(180deg, #010b18 0%, #031428 48%, #010b18 100%);
  --menu-gold-text: #ffd54f;
}

* {
  box-sizing: border-box;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto condensed", sans-serif;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  padding: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  background-color: #0a1220;
  background-image: url('/game/imgs/menu-bg.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.form-box {
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 28px 22px 22px;
    background:
        var(--menu-panel-fill) padding-box,
        var(--menu-gold-border) border-box;
    box-shadow:
        var(--menu-gold-glow),
        0 10px 36px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
}

.form-box h2 {
    color: var(--menu-gold-text);
}
.container {
    width: 100%;
    max-width: 400px;
    margin-top: calc(clamp(180px, 38vw, 260px) + 1cm);
    padding: 12px 20px 20px;
    text-align: center;
}




.toggle-password {
    position: absolute;
    right: 10px;

    top: 40%;
    transform: translateY(-50%);

    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password img {
    width: 20px;
    height: 20px;
}


.banner img{
 width: 100%;
 height: 190px;
}


/*media*/
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    width: 100%;
    margin-top: calc(clamp(160px, 36vw, 220px) + 1cm);
  }
  .banner img{
    width: 100%;
    height: 140px;
   }
}

@media (min-width: 769px) {
  .container {
    margin-top: calc(clamp(200px, 24vh, 280px) + 1cm);
  }
}


.button-container button {
  flex: 0.5;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 0px;
  padding: 5px;
}

.whatsapp-img {
  margin-left: 0px;
  display: flex;
  align-items: center;
  margin-right: 10px;
  right: auto;
}

.whatsapp-img img {
  width: 30px;
  cursor: pointer;
}

/* ESTILO DOS CAMPOS DE INPUT */
.input-group {
    position: relative;
    margin-bottom: 15px;
}
.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--menu-gold-text);
    font-size: 18px;
}
.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px; /* Espaço na esquerda para o ícone */
    background: rgba(1, 11, 24, 0.85);
    border: 1px solid rgba(255, 213, 79, 0.45);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    outline: none;
}
.input-group input::placeholder {
color: #ccc;
}
.input-group input:focus {
    border-color: #ffd700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* BOTÃO CADASTRAR */
.btn-cadastrar {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    /* Gradiente Dourado igual da imagem */
    background: linear-gradient(180deg, #f9d976 0%, #bf8728 100%);
    color: #3e1e02;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 0 #8a6018; /* Sombra 3D embaixo do botão */
    transition: transform 0.1s;
}
.btn-cadastrar:active {
    transform: translateY(4px);
    box-shadow: none;
}

/* LINK DO RODAPÉ */
.footer-text {
    margin-top: 20px;
    color: #ccc;
    font-size: 14px;
}
.footer-text a {
    color: var(--menu-gold-text);
    text-decoration: none;
    font-weight: bold;
}
.footer-text a:hover {
    text-decoration: underline;
}
    
    .textoWhats {
           color: var(--menu-gold-text);
    text-decoration: none;
    font-weight: bold; 
        padding-right: 5px;
    }