html {
    background-image: url("./assts/img/background.png");
    background-repeat: no-repeat;
    height: 100%;
    width: auto;
    padding: auto;

}

body {
    min-width: min-content;
    max-width: min-content;
    font-family: helvetica, sans-serif;
    margin: auto;
    margin-top: 150px;
    padding: 10px;
    padding-left: 100px;
    padding-right: 100px;
    display: block;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.7px);
    -webkit-backdrop-filter: blur(6.7px);
    border: 1px solid rgba(255, 255, 255, 0.32);
}
h1 {
    text-align: center;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}
label {
    margin-bottom: 10px;
    margin-top: 10px;
}
input {
    padding: 5px;
    border: none;
}
button {
        margin-top: 20px;
        padding: 10px 20px;
        border-radius: 50px;
        border: 0;
        box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
        backdrop-filter: blur(6.7px);
        background: rgba(255, 255, 255, 0.22);
        -webkit-backdrop-filter: blur(6.7px);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-size: 15px;
        transition: all .5s ease;
        cursor: pointer;
       }
       
       button:hover {
        letter-spacing: 3px;
        background-color: hsl(281, 87%, 51%);
        color: hsl(0, 0%, 100%);
        box-shadow: rgb(197, 24, 220) 0px 7px 29px 0px;
       }
       
       button:active {
        letter-spacing: 3px;
        background-color: hsl(273, 80%, 48%);
        color: hsl(0, 0%, 100%);
        box-shadow: rgb(181, 24, 220) 0px 0px 0px 0px;
        transform: translateY(10px);
        transition: 100ms;
       }

#resultado {
    text-align: center;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 30px;
}
