*{
    margin: 0px;
	padding: 0px;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}
body{
    background-color: #ffffff;
}
header{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 80px;
    color: #e4820c;
    
    font-size: 2em;
    padding: 25px;

    display: flex;
    justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
}
.portada{
    width: 100%;
    height: 100vh;
    background-image: url(../images/fondobisnes.jpg);
    background-size: cover;
    background-position:top center;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
    .portada div{
        width: 50%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;

    }
    .link_reg{
        display: block;
        background-color: #c00be2;
        color: #ffffff;
        font-weight: bold;
        text-decoration: none;
        padding: 25px 50px;
        margin: 10px;
        width: 80%;
        font-size: 40px;
    }
    .portada div.registrate{
        display: flex; 
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        align-content: center;
        width: 50%;
    }
        .portada div.registrate img {
            width: 100%;
        }

.form_registro_negocio, .registro_negocio{
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 100px;

    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
    .form_registro_negocio h1{
        display: block;
        width: 90%;
        background-color: #b9e444;
        color: #8d2f9f;
        text-align: center;
        padding: 5px 10px;
        border-radius: 5px;
        box-shadow: 3px 3px rgba(204,204,204,0.5);
    }
    .form_registro_negocio p{
        display: block;
        width: 90%;
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 20px;
        text-align: center;
        line-height: 30px;
    }
    .form_registro_negocio form{
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: space-between;
        padding-top: 20px;
    }
    .reg_bienvenida_negocio{
        display: block;
        width: 80%;
        height: 80%;
    }
        



/*footer*/
footer{
    width: 100%;
    background-color: #333333;
    padding: 50px 100px;

    display: flex; 
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
    footer .menupie{
        width: 50%;
        color: #ffffff;
    }
        footer .menupie ul{
            list-style: none;
        }
            footer .menupie ul li{
                display: block;
                padding: 5px 0;
            }
            footer .menupie ul li a{
                color: #524e4e;
                font-size: 25px;
                text-decoration: none;
            }
            footer .menupie ul li a:hover{
                color: #1bb021;
            }
    footer .contacto{
        width: 50%;
        color: #524e4e;
        font-size: 25px;
    }
        footer .contacto p{
            margin-bottom: 15px;
        }
            footer .contacto p a{
                color: #524e4e;
                text-decoration: none;
            }
            footer .contacto p a:hover{
                color: #1bb021;
            }
            footer .iconos_redes{
                width: 100%;
                display:flex;
            }
            footer .iconos_redes span{
                display: block;
                font-size: 30px;
                margin-right: 10px;
                margin-left: 10px;
            }
                .facebook a{
                    color: #524e4e;
                    text-decoration: none;
                }
                .facebook a:hover{
                    color: #475993;
                }
                .twitter a{
                    color: #524e4e;
                    text-decoration: none;
                }
                .twitter a:hover{
                    color: #55abf0;
                }
                .gplus a{
                    color: #524e4e;
                    text-decoration: none;
                }
                .gplus a:hover{
                    color: #cf1717;
                }

    .copiraig{
        width: 100%;
        text-align: center;
        color: #ffffff;
        background-color: #202020;
        padding: 10px;
    }
        .copiraig a{
            color: #ffffff;
            text-decoration: none;
        }

.logo{
    position: absolute; 
    top: 42px;
    left: 112px;
}

/*form*/
.group, .condiciones{ 
    position:relative; 
    margin-bottom:45px; 
    width: 40%;
}
    input[type="text"], input[type="password"], select{
        font-size:18px;
        padding:10px 10px 10px 5px;
        display:block;
        width:100%;
        border:none;
        border-bottom:1px solid #757575;
    }
    input[type="text"]:focus, input[type="password"]:focus, select{ 
        outline:none;
    }
    label.regs{
        color:#999; 
        font-size:18px;
        font-weight:normal;
        position:absolute;
        pointer-events:none;
        left:5px;
        top:10px;
        transition:0.2s ease all; 
        -moz-transition:0.2s ease all; 
        -webkit-transition:0.2s ease all;
    }
    input[type="text"]:focus ~ label, input[type="text"]:valid ~ label, input[type="password"]:focus ~ label, input[type="password"]:valid ~ label, select:focus ~ label, select:valid ~ label{
        top:-20px;
        font-size:14px;
        color:#5264AE;
    }
    .bar{ 
        position:relative; 
        display:block; 
        width:100%; 
    }
    .bar:before, .bar:after{
        content:'';
        height:2px; 
        width:0;
        bottom:1px; 
        position:absolute;
        background:#5264AE; 
        transition:0.2s ease all; 
        -moz-transition:0.2s ease all; 
        -webkit-transition:0.2s ease all;
    }
    .bar:before {
        left:50%;
    }
    .bar:after {
        right:50%; 
    }
    input[type="text"]:focus ~ .bar:before, input[type="text"]:focus ~ .bar:after, input[type="password"]:focus ~ .bar:before, input[type="password"]:focus ~ .bar:after {
        width:50%;
    }
    .highlight {
        position:absolute;
        height:60%; 
        width:100px; 
        top:25%; 
        left:0;
        pointer-events:none;
        opacity:0.5;
    }
    input[type="text"]:focus ~ .highlight, input[type="password"]:focus ~ .highlight {
        -webkit-animation:inputHighlighter 0.3s ease;
        -moz-animation:inputHighlighter 0.3s ease;
        animation:inputHighlighter 0.3s ease;
    }
    @-webkit-keyframes inputHighlighter {
        from { background:#5264AE; }
        to 	{ width:0; background:transparent; }
    }
    @-moz-keyframes inputHighlighter {
        from { background:#5264AE; }
        to 	{ width:0; background:transparent; }
    }
    @keyframes inputHighlighter {
        from { background:#5264AE; }
        to 	{ width:0; background:transparent; }
    }

/*condicions*/
.condiciones { z-index: 10000; height: 80px;}
    .check {
        width: 40px;
        height: 40px;
        position: absolute;
        
    }
        .check input[type="checkbox"] {
            display: none;
        }
        .check input[type="checkbox"]:checked + .box {
            background-color: #b9e444;
            border-radius: 10px;
        }
        .check input[type="checkbox"]:checked + .box:after {
            top: 0;
        }
        .check .box {
            width: 40px;
            height: 40px;
            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: #8d2f9f;
            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 span{
        position: absolute;
        padding: 10px 0 0 50px;
        font-size: 1.5em;
    }
        .condiciones span a{
            text-decoration: none;
            color: #8d2f9f;
        }
            .condiciones span a:hover{
                color: #b9e444;
            }

.d_class_reg{
    width: 100%;
    height: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
input[type=submit], input[type=button]{
    background-color: #b9e444;
    width: 100%;
    height: 60px;
    border: none;
    color:#8d2f9f;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
}
input[type=submit]:hover{
    background-color: #a91b7c;
}

.registro_negocio{
    height: 100vh;
    width: 80%;
    max-width: 1000px;
}

/*Responsivos*/

@media only screen and (max-width:1200px){
 .portada{
    background-position:top right;
 }
 .portada div.registrate{
    width: 100%;
    height: 50%;
 }

 .portada div.registrate img {
    height: 100%;
    width: auto;
 }
}

@media only screen and (max-width:550px){
    .group, .condiciones{
        width: 100%;
    }
    .link_reg{
        font-size: 20px;
    }
    footer .menupie, footer .contacto{
        width: 100%;
    }
    footer{
        padding: 50px 20px;
    }
}