* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
      background-image: url("../img/ciudad.jpg");
      background-position: center center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: cover;
      background-color: #464646;
      font-family: 'Open sans',sans-serif;
}
.contenedor {
    width: 90%;
    max-width: 450px;
    margin: 90px auto;
    background: rgba(98,96,96,.6);
    padding: 10px;
    border-radius: 10px;
}
.contenedor .titulo-form {
    width: 100%;
}
.contenedor .titulo-form h2 {
    text-align: center;
    font-weight: 700;
    color: #FFF;
    padding: 10px;
}
.contenedor form {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
}
.contenedor form .labels {
    width: 30%;
	font-size: 13px;
}
.contenedor form .labels label {
    display: block;
    margin: 10px;
    color: #FFF;
    font-weight: 400;
}
.contenedor form .inputs {
    width: 70%;
}
.contenedor form .inputs input[type="text"],
.contenedor form .inputs input[type="password"]{
    width: 80%;
    padding: 3px;
    margin-bottom: 6px;
    border-radius: 3px;
    outline: none;
	font-size: 12px;
    border: 1px solid #CCC;
    font-family: 'Open Sans';
}
.contenedor form .boton {
    width: 100%;
    padding: 5px;
}
.contenedor form .boton input[type="submit"]{
    display: block;
    margin: auto;
    padding: 5px 40px;
    border: none;
	font-size: 12px;
    background: #4D4B4B;
    font-family: 'Open Sans';
    color: #FFF;
    border-radius: 5px;
    cursor: pointer;
}
.contenedor form .boton input[type="submit"]:hover {
    background: #2CA6A4;
}
.contenedor .direcciones {
    width: 100%;
}
.contenedor .direcciones a {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    text-decoration: none;
    color: #FFF;
    font-weight: 400;
	font-size: 12px;
}
.contenedor .direcciones a:hover {
    color: #3FA8F9;
}
/* --------------------------------------- */
footer {
    width: 100%;
    background: rgba(000,000,000,.5);
    padding: 5px;
    position: absolute;
    bottom: 0;
	font-size: 12px;
}
footer .footer-contenedor {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-content: center;
}
footer .footer-contenedor .footer-direcciones {
    width: 25%;
}
footer .footer-contenedor .footer-direcciones a {
    display: block;
    color: #FFF;
    margin: 3px;
    font-size: 12px;
    padding:5px 0;
    text-decoration: none;
}
footer .footer-contenedor .footer-direcciones a:hover {
    text-decoration: underline;
}
footer .footer-contenedor .footer-redes {
    width: 25%;
    text-align: center;
    padding: 10px;
}
footer .footer-contenedor .footer-redes a {
    font-size: 20px;
    text-decoration: none;
    color: #F2F2F2;
    padding: 7px;
    display: inline-block;
    margin: auto;
    background: #000;
    border: 2px solid transparent;
    border-radius: 5px;
}
footer .footer-contenedor .footer-redes a:hover {
   border: 2px solid #ccc; 
}
footer .footer-contenedor .footer-info {
    width: 25%;
}
footer .footer-contenedor .footer-info h3{
    color: #CCC;
    font-weight: 700;
}
footer .footer-contenedor .footer-info p {
    color: #FFF;
    font-size: 12px;
}
footer .footer-contenedor .footer-info a {
    color: #FFF;
    font-weight: 600;
}
footer .footer-contenedor .footer-ed {
    width: 8%;
}
footer .footer-contenedor .footer-ed img {
    margin: auto;
}

@media screen and (max-width: 640px) {
    .contenedor {
        width: 90%;
        max-width: 450px;
        margin: 90px auto;
        background: rgba(98,96,96,.6);
        padding: 10px;
        border-radius: 10px;
    }
    footer {
        width: 100%;
        background: rgba(000,000,000,.5);
        padding: 5px;
        position: relative;
        bottom: 0;
        font-size: 12px;
    }
    footer .footer-contenedor {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    footer .footer-contenedor .footer-direcciones {
        width: 100%;
        text-align: center;
    }
    footer .footer-contenedor .footer-redes {
        width: 100%;
    }
    footer .footer-contenedor .footer-info {
        width: 100%;
        text-align: center;
    }
    footer .footer-contenedor .footer-ed {
        width: 100%;
    }
    footer .footer-contenedor .footer-ed img {
        display: block;
    }
    body {
      background-image: url("../img/ciudad.jpg");
      background-position: center center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: cover;
      background-color: #464646;
    }

}