/* Reset básico para remover margens e paddings padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Estilização do corpo */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-image: url("/img/Banner\ para\ E-commerce\ Coleção\ Inverno\ Minimalista.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

form {
    background: rgba(0, 0, 0, 0.1); /* Fundo transparente */
    padding: 20px;
    color: #ffffff;
    font-weight: bold;
    font-size: 22px;
    border-radius: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 500px;
    height: 300px;
    backdrop-filter: blur(5px); /* Embaça apenas o fundo atrás do form */
    -webkit-backdrop-filter: blur(10px); /* Para compatibilidade com navegadores antigos */
}


/* Estilização dos inputs */
input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 16px;
}

/* Estilização do botão */
button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    width: 200px;
}

button:hover {
    background-color: #0056b3;
}

/* Responsividade */
@media (max-width: 400px) {
    form {
        width: 90%;
    }
}
