@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif
}

body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}


.imagem-div {
  margin-top: 5vh;
  height: 15vh;
  width: auto;
}

.imagem-div img{
  height: 100%;
  width: auto;
}




.form-center {
    width: 80vw;
    height: 80vh;
    z-index: 999999999;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;


}


.form-title {
    top: 0;
    left: 0%;
    width: 100%;
    height: 10%;

    text-align: center;


}

.form-title h3 {
    font-family:  'Poppins', sans-serif;
    font-size: clamp(0.6rem, 2.8vw, 6rem);

    color: white;
}


#form-visitante {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 5%;

    width: 100%;
    height: 80%;


    border-radius: 20px;

    padding: 5%;

}

.input {
    border-radius: 20px;
    padding: 0 5%;
    font-family:  'Stack Sans Headline', sans-serif;
    font-size: clamp(0.4rem, 2vw, 3rem);

    width: 100%;
    
}


#form-visitante button{
    border-radius: 20px;
    font-family:  'Stack Sans Headline', sans-serif;
    font-size: clamp(0.4rem, 2vw, 3rem);
    transition: all 0.3s ease;
    width: 210%;

}


#form-visitante button:hover {
    transform: scale(1.03);
}




.error {
    position: absolute;
    background-color: rgb(0, 0, 0);
    z-index: 9999999;
    left: 0;
    top: 0;

    text-shadow: 0 0 10px aqua;

    color: aqua;



    width: 100%;
    height: 15%;

    border-radius: 20px;

    text-align: center;

    font-family:  'Stack Sans Headline', sans-serif;
    font-size: clamp(0.7rem, 3.5vw, 6rem);
    font-weight: 900;

    opacity: 0;
    transition: all 0.15s ease;
    
}

.sucess
    
    {
        
    text-shadow: 0 0 10px rgb(255, 0, 255) !important;

    color: rgb(255, 0, 255) !important;
        
    }


.error.show {
    opacity: 1;
    animation: pop 0.2s ease;
}

@keyframes pop {
    0% { transform: scale(0.98); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}


@media (max-width:768px){


.imagem-div {
  margin-top: 0vh;
  height: 8vh;
  width: auto;
}

.imagem-div img{
  height: 100%;
  width: auto;
}




.form-center {
    width: 95vw;
    height: 80vh;
    z-index: 999999999;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}


.form-title {
    top: 0;
    left: 0%;
    width: 100%;
    height: 5%;

    text-align: center;


}

.form-title h3 {
    font-family:  'Poppins', sans-serif;
    font-size: clamp(1rem, 2.8vw, 6rem);

    color: white;
}


#form-visitante {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;

    gap: 5%;

    width: 100%;
    height: 80%;


    border-radius: 20px;

    padding: 5%;

}

.input {
    border-radius: 20px;
    padding: 0 5%;
    font-family:  'Poppins', sans-serif;
    font-size: clamp(1rem, 2vw, 3rem);

    width: 100%;
    
}


#form-visitante button{
    border-radius: 20px;
    font-family:  'Poppins', sans-serif;
    font-size: clamp(1rem, 2vw, 3rem);
    transition: all 0.3s ease;
    width: 100%;

}


#form-visitante button:hover {
    transform: scale(1.03);
}


}