html, body{
    font-size: 14px;
}

.btn-def {

    background-color: rgb(41, 53, 53);
    color: black;
}

/* Estilo para os campos de entrada */
.input-container {
    background-color: rgba(255, 255, 255, 0.9); /* Cor de fundo dos campos de entrada */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    
}

/* Estilo para os campos de entrada */
input {
    width: 100%;
    min-width: 300px; /* Largura mínima desejada para o input */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    background: #F8F8F8;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.ladoesquerdo{
    width: 50%;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.ladodireito{
    width: 50%;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.clear {
    clear: both;
}
p{
    font-weight: 500;
}
h3{
    font-weight: 800;
}
@media (max-width: 768px) {
    p{
    display: none;
    }
    h3{
    display: none;
    }
    .bg-img{
    display: none;
    }  
    body{
    background: linear-gradient(to right, #F8F8F8 50%, #F8F8F8 50%);
    }    
    .ladoesquerdo{
    width: 100%;
    margin-left: 15%;
    }  
}