*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    color: white;
    /* border: 1px solid black; */
}
a{
    color: var(--gris);
}
a:hover
{
    color: var(--rojo);
    background: transparent;
}
body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*background-color:darkred;*/
    /*background-image: linear-gradient(135deg, rgba(19,117,71,1) 0%, rgba(109,217,163,1) 47%, rgba(19,117,71,1) 100%);*/
    /*background-image:linear-gradient(135deg, rgba(187, 215, 105, 1) 0%, rgba(96, 132, 37, 1) 48%, rgba(187, 215, 105, 1) 100%);*/
    /*background-image: linear-gradient(to right, rgba(96, 132, 37, 1), rgba(187, 215, 105, 1));*/
    background-image: radial-gradient(circle, rgba(96,129,37,1) 0%, rgba(187,215,105,1) 100%);
    height: 100vh;
    /* background-image: url("./img/fondo.jpg");
    background-size: 100%; */
    /* box-shadow: inset 0 0 10000px rgba(255, 255, 255, .2); */
    /* backdrop-filter: blur(10px); */
}

body form 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px;
    border: 1px inset rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    width: 400px;
    /* background-color: rgba(255, 255, 255, 0.4); */
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, 0.2);
    /* background-color: rgba(255, 255, 255, .15);   */
    backdrop-filter: blur(10px);
}
body > img
{
    margin-bottom: 15px;
}
form *
{
    background: transparent;
}
form input 
{
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    background-color: white;
    color: black;
}
form input[type=submit]
{
    color: white;
    background: var(--rojo);
}
form input[type=submit]:hover
{
    background: white;
    color: var(--rojo);
}
body form h1{
    text-align: center;
}
div.row
{
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:flex-start;
    text-align: left;
}
h1, div.row label, input[type=submit]{
    font-weight: bold;
    color: var(--gris);
}

div.row.link
{
    flex-direction: row;
    justify-content: start;
}