body{
    background-image: url(../img/fotos.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.div1{
    height: 20%;
}
.div2{
    font-family: system-ui;
    
}
.inptxt{
    border-radius: 5px;
}
#form{
    width: 35%;
    height: 60%;
    background-color: #f082dd;
    border-radius: 10px;
    border: 5px black dashed;
}
.boton{
    background: black;
    cursor: pointer;
    border: none;
    padding: 16px 32px;
    color: #FFF;
    font-size: 15px;
    font-weight: bold;
    position: relative;
    border-radius: 12px;
}
/*
.boton::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, red, blue, deeppink, blue, red, deeppink, blue);
    background-size: 800%;
    border-radius: 10px;
    filter: blur(8px);
    animation: glowing 20s linear infinite;
}
@keyframes glowing {
    0%{
        background-position: 0 0;
    }
    50%{
        background-position: 400% 0;
    }
    100%{
        background-position: 0 0;
    }
}
*/