:root{
    --colorTextos: #49454567;
}

/*
Web hecha con AlexCG Design, si te sirvió la plantilla por favor entra a AlexCG Design
		esta plantilla es libre para usar, así como otras plantillas más que tenemos en el canal...
		->>>> https://www.youtube.com/alexcgdesign <<<<-
*/

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(/img/home-bg.jpg);
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height:650px;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1{
    text-align: center;
    margin: 5px 0;
    font-size: 50px;
    color: black;
}

form{
    background: #fff;
    width: 30%;
    height: 95%;
    margin-top: 3%;
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.8);
}

.form{
    width: 100%;
    margin: auto;
}

form .grupo{
    position: relative;
    margin-top: -30%;
    margin: 45px;
}

input, textarea{
    background: none;
    color:#c6c6c6;
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border:none;
    border-bottom: 1px solid var(--colorTextos);
    resize: none;
}

input:focus,textarea:focus{
    outline: none;
    color: rgb(94,93,93);
}

input:focus~label, 
input:valid~label, 
textarea:focus~label, textarea:valid~label{
    position: absolute;
    top: -14px;
    font-size: 12px;
    color: #2196F3;
}

label{
    color: var(--colorTextos);
    font-size: 16px;
    position: absolute;
    left: 5px;
    top:10px;
    transition: 0.5s ease all;
    pointer-events: none;
}


input:focus~.barra::before, textarea:focus~.barra::before{
    width: 100%;
}
.barra{
    position: relative;
    display: block;
    width: 100%;
}
.barra::before{
    content: '';
    height: 2px;
    width: 0%;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to right, #6A82FB, #FC5C7D);
    transition: 0.3s ease all;
    left: 0%;
}
.form a{
    background: #000000;
    display: block;
    width: 100px;
    height: 30px;
    border:none;
    color:rgb(255, 255, 255); 
    border-radius: 4px;
    font-size: 16px;
    margin: 10px auto;
    cursor: pointer;
    text-align: center;
}



@media screen and (max-width:1100px){
    form{
        width: 50%;
        height: 80%;
    }

    form .grupo{
        position: relative;
        margin-top: -20%;
        margin: 35px;
    }

    h1{
        text-align: center;
        margin: 5px 0;
        font-size: 30px;
        color: black;
    }

    body{
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
    
}

@media screen and (max-width:600px){
    form{
        width: 60%;
    }

    body{
        background-size: cover;
        background-repeat: no-repeat;
    }
}

@media screen and (max-width:450px){
    form{
        width: 80%;
    }

    body{
        background-size: cover;
    }
}

@media screen and (max-width:300px){
    form{
        width: 90%;
    }
}