*, html{
    margin: 0px;
	padding: 0px;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}
body{
    background-color: #272a33;
    background: url('../images/fondo_app.png');
    z-index: -1;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    align-content: flex-start;
}

section{
    width: 100%;
    padding: 20px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: start;
}
    section img{
        width: 80%;
        height: auto;
    }
    section h1{
        display: block;
        width: 100%;
        text-align: justify;
        font-size: 18px;
        margin-top: 10px;
        margin-bottom: 10px;
        color: #000000;
    }
    section form{
        display: block;
        background-color: #ffffff;
        padding: 20px;
        border-radius: 25px;
    }
    section form input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"]{
        width: 100%;
        height: 40px;
        padding: 5px;
        font-size: 20px;
        border: 0;
        background-color: #ffffff;
        color: #6458e9;
        border-bottom: 1px solid #000000;
        margin-bottom: 20px;
    }
    section form input[type="button"]{
        background-color: #1bb021;
        border-radius:25px;
        width: 100%;
        height: 60px;
        border: none;
        color: #ffffff;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        font-weight: bold;
    }
    section form span{
        display:block;
        width: 100%;
        text-align: left;
    }
        section form span a{
            text-decoration: none;
            color: #6356ea;
            font-size: 16px;
        }

    section p{
        display: block;
        width: 100%;
        padding:20px;
        text-align: center;
    }
    .trecupera{
        text-align: justify;
        color: #5e657b;
    }

        section p input[type="text"]{
            border: 2px solid #37b83c;
            color: #6356ea;
            padding: 10px;
            width: 200px;
            height:50px;
            text-align: center;
            font-size:20px;
        }
        section p input[type="button"]{
            border: 2px solid #1bb021;
            background-color: #1bb021;
            color: #6356ea;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
        }

    .check {
        width: 40px;
        height: 40px;
        position: absolute;
        
    }
        .check input {
            display: none;
        }
        .check input:checked + .box {
            background-color: #1bb021;
            border-radius: 10px;
        }
        .check input:checked + .box:after {
            top: 0;
        
        }
        .check .box {
            width: 20px;
            height: 20px;
            transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
            border: 2px solid transparent;
            background-color: #cccccc;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-radius: 10px;
        }
        .check .box:after {
            width: 50%;
            height: 20%;
            content: '';
            position: absolute;
            border-left: 7.5px solid;
            border-bottom: 7.5px solid;
            border-color: #a91b7c;
            transform: rotate(-45deg) translate3d(0, 0, 0);
            transform-origin: center center;
            transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
            left: 0;
            right: 0;
            top: 200%;
            bottom: 5%;
            margin: auto;
        }

.condiciones{
    width: 100%;
    padding: 20px 0px;
}

.verde{ color: #37b83c; }
.morado{ color: #6356ea; }
.naranja{ color: #e4820c;}

.portada p{
    display: block;
    width: 100%;
    text-align: justify;
    color: #5e657b;
}
    .portada p a{
        display: block;
        width: 100%;
        background-color: #6356ea;
        color: #ffffff;
        padding: 10px;
        border: 0;
        border-radius: 13px;
        text-decoration: none;
    }
.portada form{
    width: 100%;
    display:block;
}
    .portada form input[type="submit"]{
        width: 100%;
        max-width: 720px;
        height: 50px;
        background-color: #6356ea;
        color: #ffffff;
        padding: 5px;
        border: 0;
        border-radius: 13px;
    }