@font-face {
    font-family: 'HelveticaNowDisplay-Regular';
    src: url('HelveticaNowDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background: url('bgcadastro.png') no-repeat center center fixed;
    background-size: cover;    
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "HelveticaNowDisplay-Regular", sans-serif;
    color:white;
}
/* Para navegadores WebKit (Chrome, Safari, Edge) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Para Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.logo {
    max-width: 50rem;
    height: auto;
    margin-right: 50px;
    margin-left: 50px;
}

.live {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.container-live {    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;    
    padding: 10px;
    

}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px;
    height: 100%;
}


@media (max-width: 768px) {
    body{
        max-width: 100vw;
    }

    .container {
        flex-direction: column;
    }

    
    .container {
        flex-direction: column;
    }

   

    .container-live .logo{
        max-width: 80vw !important;
    }
}



.form-container {
    background-color: #d98f89;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin: 15px 0;
    text-align: center;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
}

.form-group button {
    width: 100%;
    padding: 10px;
    background-color: #6f4643;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-group button:hover {
    opacity:0.5;
}

.form-group {
    width: 100%;
}

@media (max-width: 600px) {
    
    .form-container {
        padding: 15px;
    }

    .form-group input, 
    .form-group button {
        font-size: 14px;
        padding: 8px;
    }
}
