body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/images/background.png');
    background-position: center;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    margin: 0;
    color: #474747;
    overflow: hidden;
}

.container {
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    width: 30dvw;
}

.logo {
    margin: 0 auto 20px;
}

h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 500;
}

.valido {
    font-size: 1em;
    color: #0056b3;
}

.invalido {
    font-size: 1em;
    color: #EC2939;
}

p {
    margin-top: 20px;
}

@media (max-width: 345px) {
    h1 {
        font-size: 1.3em;
    }
}

@media (max-width: 1024px) {
    .container {
        width: 90vw;
    }
}