*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #0f1f36;
}
header{
    width: 100%;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    img{
        width: min(80%, 400px);
    }
}
.formulario{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    p{
        text-align: center;
        font-size: 2rem;
        line-height: inherit!important;
        font-size: clamp(1.5rem, 1.125rem + 3vw, 3rem);
        font-weight: 600;
        color: #d3b987;
    }
    form{
        width: min(100%, 800px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px;
        font-family: "Inter", sans-serif;
        label{
            color: #ffffff;
            width: 100%;
            margin-bottom: 2px;
        }
        input, textarea{
            width: 100%;
                background-color: transparent;
                padding: 8px 8px 8px 10px;
                font-size: 14px;
                color: #fff;
                border: #505050 2px solid;
                margin-bottom: 1.2rem;
                font-family: "Inter", sans-serif;
        }
        button{
                width: min(100%, 200px);
                padding: 10px;
                transition: all .3s ease-out;
                background-repeat: repeat;
                font-family: "Inter", sans-serif;
                font-weight: 600;
                font-size: 1rem;
                line-height: 1.75rem;
                border: none;
                margin-bottom: 100px;
                cursor: pointer;
                background-color: #d3b987;
                color: black;
        }
    }
}
.flotante{
    position: fixed;
    bottom: 10px;
    left: 10px;
    img{
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
}