body{
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-rows: 1fr;
}
h1{
    margin-top: 25px;
}
main{
    border-radius: 20px 20px 20px 20px;
    height: 340px;
    width: 500px;
}
form{
    display: grid;
    justify-content: center;
    align-items: center;
    row-gap: 5px;
}
.inputStyle{
    border: 1.5px #141731 solid;
    padding: 5px;
    color: black;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    text-indent: 1%;
}
.formBtns{
    display: grid;
    text-align: center;
    font-size: 14px;
}
.formBtns>a{

}
main{
    z-index: 100;
}
.backgroundimage{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    background-image: url(/Assets/iconogas.png);
    background-position: center top;
    background-repeat: repeat;
    background-size: 15%;
    filter: blur(0px) saturate(.8) opacity(.05);
}



@media only screen and (min-width:860px){

}
@media only screen and (max-width:860px){

    
}
@media only screen and (max-width:400px){
    main{
        border-radius: 20px 20px 20px 20px;
        height: 340px;
        width: 300px;
    }
    .backgroundimage{
        background-size: 40%;
    }
}