* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Imagen de fondo */
body, html {
    background-image: url(https://i.ibb.co/VND92kg/flat-lay-toys-with-food-bowl-fur-brush-dogs.jpg);
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

/*Contenedor del formulario y de los textos*/
.contenedor {
    /*Margenes*/
    margin: auto;
    width: 100%;

    /*Alineaciones*/
    align-items: center;
    text-align: center;

}

/*Mensaje H2*/
.encabezado {
    /*Fuente*/
    font-family: 'Edo SZ';
    font-style: normal;
    font-weight: normal;
    font-size: 48px;
    line-height: 55px;
}

body {
    /*Fuente*/
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;

    /*Posicion*/
    float: left;
    display: flex;
    height: 100%;
    min-height: 100vh;

    /*Margenes*/
    padding: 100px 150px;

}

/*Clase para subtemas*/
.descripcion {
    /*Margenes*/
    margin-top: 20px;
    margin-bottom: 40px;
}

li {
    /*Quitando elementos representativos de la lista*/
    list-style: none;
}

/*Campos*/
.correo,
.contra {
    /*Margenes*/
    margin-bottom: 1em;
}

/*Degradado al placeholder de los campos*/
.campo::placeholder {
    color: rgba(196, 196, 196, 0.658);
}

.correo:active,
.contra:active {
    color: #808080;
}

button[type="submit"]:active {
    transform: scale(0.95);
}

/*Campos de usuaro y contraseña (Diseño)*/
.campo {
    /*Bordes*/
    border-radius: 8px;
    border-color: transparent;

    /*Fondo*/
    background: rgb(255, 255, 255);

    /*Texto*/
    text-align: center;
    font-size: 20px;

    /*Dimensiones*/
    width: 80%;
    height: 2em;


}

/*Formulario*/
.logueo {
    /*Margenes*/
    margin-bottom: 2em;
}

.boton {
    /*Margenes*/
    margin-top: 1.5em;
    margin-bottom: 7em;

    /*Texto*/
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 22px;
    line-height: 26px;

    /*Elemento boton*/
    background: #FFCF53;
    width: 250px;
    height: 50px;

    /*Borde del elemento boton*/
    border-radius: 8px;
    border-color: transparent;

}

/*Posar el cursor sobre el boton*/
.boton:hover {
    /*Margenes*/
    margin-top: 1.5em;
    margin-bottom: 7em;

    /*Texto*/
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 22px;
    line-height: 26px;

    /*Elemento boton*/
    background: #fcc231;
    width: 250px;
    height: 50px;

    /*Borde del elemento boton*/
    border-radius: 8px;
    border-color: transparent;
}

/*Enlaces 'a'*/
.enlace {
    color: #FFFF;
    text-decoration: none;
}

/*Posicionar el cursor en los enlaces*/
.enlace:hover {
    text-decoration: none;
    border-radius: 8px;
    background: #e2dfdf50;
}

/*Pie de pagina*/
.credito {
    /*Fuente*/
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 9px;

    /*Texto*/
    text-align: right;
    color: #FFFF;
    text-decoration: none;

    /*Posicion*/
    float: right;
    position: fixed;
    bottom: 0;
    right: 0;

}


@media (max-width:768px) {
    
    .credito{
        font-size: 4px;
    }
}

@media (max-width:480px) {
    body {
        padding: 30px 25px;
    }
    .credito{
        font-size: 4px;
    }
}