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

.content
{
    width: 100%;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(fondo.jpg);
    background-size: cover;
    background-position: center;
}

/* CABECERA */

.Agradece
{
    text-align: center;
    margin-top: 40px;
}

.Agradece img
{
    width: 300px;
}

.Agradece p
{
    color: white;
    margin-top: 10px;
    font-weight: bold;
}

/* LOGIN */

.form
{
    width: 420px;
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form h2
{
    text-align: center;
    color: white;
}

hr
{
    height: 3px;
    width: 60%;
    margin: 10px auto 20px auto;
    background-color: #6a5acd;
    border: none;
}

p
{
    color: white;
    margin-top: 15px;
    font-weight: bold;
}

/* CAMPOS */

.campo
{
    margin-top: 5px;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
}

.campo i
{
    display: inline-block;
    width: 20px;
    text-align: center;
}

input[type="text"],
input[type="password"]
{
    display: inline-block;
    width: 85%;
    border: none;
    outline: none;
    font-size: 14px;
}

/* PANEL LOGIN */

.paneles
{
    margin-top: 15px;
    width: 100%;
}

.paneles input[type="checkbox"]
{
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
}

.paneles span
{
    color: white;
    font-size: 14px;
    vertical-align: middle;
}

.paneles span:first-of-type
{
    margin-left: 5px;
}

.derecha
{
    float: right;
}

/* BOTÓN */

.Enviar
{
    width: 100%;
    height: 50px;
    margin-top: 25px;
    border-radius: 12px;
    border: none;
    background-color: #3d2fb3;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.Enviar:hover
{
    background-color: #5a4be0;
}

/* NAV */

nav
{
    width: 100%;
    height: 50px;
    margin-top: 20px;
    background-color: rgba(0,0,0,0.3);
    text-align: center;
}

nav a
{
    display: inline-block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
}

nav a:hover
{
    border-bottom: 3px solid white;
}

/* AGRADECER */

.form2
{
    width: 420px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    text-align: left;
}

select
{
    width: 100%;
    height: 35px;
    border-radius: 8px;
    margin-top: 8px;
}

.texto
{
    width: 100%;
    height: 130px;
    margin-top: 8px;
    border-radius: 8px;
    border: none;
    outline: none;
    padding: 10px;
}

/* RECIBIR */

.form3
{
    width: 750px;
    height: 400px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    position: relative;
}

.caja2
{
    width: 200px;
    position: absolute;
    left: 30px;
    top: 40px;
    background-color: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.caja2 img
{
    width: 90%;
    border-radius: 10px;
}

.caja1
{
    width: 420px;
    position: absolute;
    right: 30px;
    top: 40px;
    background-color: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 10px;
}