﻿html, body {
    width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    background: url(../../assets/img/comun/fondo.jpg);
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
}

h1, h2, h3, h4 {
    font-family: "Quicksand", sans-serif;
    color: #0A8CB3;
}

h1 {
    font-size: 30px;
    font-weight: 700;
}

h2 {
    font-size: 25px;
    font-weight: 700;
}

h3 {
    font-size: 22px;
    font-style: italic;
}

h4 {
    font-size: 22px;
}

h5, p {
    font-family: "Open Sans", sans-serif;
}

h5 {
    font-size: 16px;
    color: #F59D24;
}

p {
    font-size: 16px;
    color: #969696;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
}


::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #c1c0c0;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #c1c0c0;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #c1c0c0;
    opacity: 1;
    /* Firefox */
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #c1c0c0;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #c1c0c0;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #c1c0c0;
}

.contenedor_formulario {
    width: 100%;
    height: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .contenedor_formulario .formulario {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 400px;
        background: #fff;
        border-radius: 5px;
        padding: 30px 0px 5px 0px;
        margin: 15px 15px 35px 15px;
        /*-webkit-box-shadow: 2px 3px 9px 0px rgba(0,0,0,0.15);
        -moz-box-shadow: 2px 3px 9px 0px rgba(0,0,0,0.15);
        box-shadow: 2px 3px 9px 0px rgba(0,0,0,0.15);*/
    }

        .contenedor_formulario .formulario img {
            height: 140px;
            margin-bottom:10px;
        }

.formulario2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 400px;
}

.main_formulario {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 400px;
}

.header_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    padding: 14px 40px 15px 40px;
    width: 100%;
}

    .header_form img {
        height: 30px;
    }

.contenedor_formulario .formulario h4 {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 5px;
    font-weight: bold;
}

.contenedor_formulario .formulario .tutorial {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    text-align: center;
    margin-bottom: 20px;
    justify-content: center;
}

    .contenedor_formulario .formulario .tutorial a {
        background: #e71d73;
        color: #fff;
        text-align: center;
        border: none;
        text-decoration: none;
        padding: 5px 15px;
        border-radius: 5px;
        cursor: pointer;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }

        .contenedor_formulario .formulario .tutorial a:hover {
            background: #f94199;
        }

.contenedor_formulario .formulario form {
    width: 300px;
}

.hideForm {
    display: none;
}

.form_grupo {
    margin-left: 50px;
    margin-right: 50px;
}

.contenedor_formulario .formulario form .form_grupo {
    /*border-bottom: 3px solid #2282de;*/

    border: 1px solid #ccc;
    border-radius: 8px;

    margin-bottom: 20px;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
}

    .contenedor_formulario .formulario form .form_grupo input {
        padding: 5px 10px;
        color: #5f5f5f;
    }

    .contenedor_formulario .formulario form .form_grupo label, .contenedor_formulario .formulario form .form_grupo input {
        border: none;
    }


    .contenedor_formulario .formulario form .form_grupo label {
        padding: 0px 5px;
        color: #2282de;
    }

    .contenedor_formulario .formulario form .form_grupo input {
        padding: 5px;
        border-radius: 8px;
        padding: 10px;
        font-size: 15px;
    }

.contenedor_formulario .formulario form .enviar_grupo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-block;
    width: 100%;
    text-align: center;
}

    .contenedor_formulario .formulario form .enviar_grupo .box_pass {
        text-align: right;
        margin-top: -15px !important;
    }

        .contenedor_formulario .formulario form .enviar_grupo .box_pass a {
            color: #F59D24;
        }

    .contenedor_formulario .formulario form .enviar_grupo button {
        background: #28AECE;
        color: #fff;
        width: 120px;
        border: none;
        padding: 3px 0;
        border-radius: 5px;
        margin-top: 20px;
        cursor: pointer;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        margin-top: 10px;
        margin-bottom: 10px;
        width: 100%;
    }

        .contenedor_formulario .formulario form .enviar_grupo button:hover {
            background: #0A8CB3;
        }

.formulario .ingresa_facebook {
    text-align: center;
    overflow: hidden !important;
    border-radius: 5px !important;
    background: red;
}

    .formulario .ingresa_facebook img {
        height: 30px;
    }

.contenedor_formulario .formulario form .enviar_grupo a {
    font-size: 13px;
    color: #004A92;
    font-weight: bold;
}

.contenedor_formulario .formulario .nuevos_usuarios {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

    .contenedor_formulario .formulario .nuevos_usuarios h4 {
        margin-top: 40px;
        margin-bottom: 5px;
    }

    .contenedor_formulario .formulario .nuevos_usuarios h5 {
        margin-top: 40px;
        margin-bottom: 5px;
        font-size: 18px;
        font-family: "Open Sans", sans-serif;
        color: #004A92;
    }

    .contenedor_formulario .formulario .nuevos_usuarios a {
        background: #28AECE;
        color: #fff;
        width: 130px;
        border: none;
        padding: 3px 10px;
        border-radius: 5px;
        cursor: pointer;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }

        .contenedor_formulario .formulario .nuevos_usuarios a:hover {
            text-decoration: none;
            background: #0A8CB3;
        }



.footer_login .lineas_colores {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .footer_login .lineas_colores .azul {
        height: 5px;
        width: 14%;
        margin: 1px;
        background: #004A92;
    }

    .footer_login .lineas_colores .celeste {
        height: 5px;
        width: 14%;
        margin: 1px;
        background: #28AECE;
    }

    .footer_login .lineas_colores .verde {
        height: 5px;
        width: 14%;
        margin: 1px;
        background: #318F3D;
    }

    .footer_login .lineas_colores .amarillo {
        height: 5px;
        width: 14%;
        margin: 1px;
        background: #F59D24;
    }

    .footer_login .lineas_colores .rosa {
        height: 5px;
        width: 14%;
        margin: 1px;
        background: #E71D73;
    }

    .footer_login .lineas_colores .rojo {
        height: 5px;
        width: 14%;
        margin: 1px;
        background: #E90E0E;
    }

    .footer_login .lineas_colores .plomo {
        height: 5px;
        width: 15%;
        margin: 1px;
        background: #4F4F4F;
    }

@media (max-width: 480px) {
    .header_form {
        justify-content: space-between;
    }
}
