:root {
    --colorTextos: #49454567;
}

body {
    min-height: 100%;
}

h1 {
    padding-top: 50px;
    font-weight: 400;
    font-family: monserrat;
    font-size: 50px;
    font-weight: bold;
}

h5 {
    color: #d4d1d1;
    font-size: 10px;
    margin-bottom: 10px;
    margin-top: -50px;
    padding-bottom: 10px;
}

#pep1 {
    margin-top: -20px;
    font-size: 15px;
    font-weight: lighter;
    color: rgb(180, 180, 180);
}

p {
    margin-bottom: 0rem;
}

#pep2 {
    font-size: 14px;
    font-family: sans-serif;
    font-weight: bold;
}

#pep3 {
    font-family: Monserrat;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: -15px;
}

#pep4 {
    font-size: 20px;
    font-family: monserrat, serif;
    font-weight: bold;
    margin-top: -40px;
    margin-bottom: -20px;
}


/*
#pep5 {
    font-size: 13px;
    color: #aeb0b3;
    display: grid;
    grid-template-columns: 0.25fr 0.25fr 0.25fr;
}
*/


/*
#pep6 {
    font-size: 13px;
    display: grid;
    font-weight: bold;
    grid-template-columns: 0.25fr 0.25fr 0.25fr;
}
*/

form {
    background: #fff;
    box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.8);
    border-radius: 0px;
    width: 100%;
    height: 100%;
}

form .grupo {
    position: relative;
    margin: 25px;
}

input {
    background: none;
    color: #c6c6c6;
    font-size: 12px;
    padding: 6px 6px 6px 6px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--colorTextos);
}

input:focus {
    outline: none;
    color: #5e5d5d;
}

label {
    color: var(--colorTextos);
    font-size: 12px;
    position: absolute;
    left: 5px;
    top: 10px;
    transition: 0.5s ease all;
    pointer-events: none;
}

input:focus~label,
input:valid~label {
    top: -14px;
    font-size: 12px;
    color: #aeb0b3;
    font-weight: bold;
}

.barra {
    position: relative;
    display: block;
    width: 100%;
}

.barra::before {
    content: "";
    height: 2px;
    width: 0%;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to right, #1b1a1b, #4568DC);
    transition: 0.3s ease width;
    left: 0;
}

input:focus~.barra::before {
    width: 100%;
}

.warnings {
    width: 200px;
    text-align: center;
    margin: auto;
    color: #771111;
    padding-top: 20px;
}

@media screen and (max-width:500px) {
    form {
        width: 80%;
    }
}

#registrar {
    background-color: rgba(255, 255, 255, 0.87);
    border: 2px solid rgb(7, 7, 7);
    border-radius: 4px;
    color: rgb(2, 2, 2);
    font-family: inherit;
    font-size: 15px;
    width: 150px;
    animation: pulse 1.5s infinite;
    font-weight: bold;
    position: static;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto;
}

@keyframes pulse {
    0% {
        transform: scale(.99);
        box-shadow: 0 0 0 0 rgba(146, 145, 145, 0.4);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(238, 238, 238, 0);
    }
    100% {
        transform: scale(.99);
        box-shadow: 0 0 0 0 rgba(233, 232, 232, 0);
    }
}