@import url('https://fonts.googleapis.com/css?family=Anton|Nunito+Sans');
* {
    box-sizing: border-box;
}
html, body{
    height: 100%;
}
body {
    font-family: Arial;
    margin: 0;
}

.contenedor {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.contenedor-form {
    flex: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}
.form-login{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    height: 70%;
    width: 90%;
    border-radius: 15px;
    font-family: 'Nunito Sans', sans-serif;
}

.form-login > label{
    margin-bottom: 10px;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
}

.control-login{
    margin: 5px;
    margin-top: 12px;
    height: 50px;
    outline-width: 0;
    font-family: 'Nunito Sans', sans-serif;
    border: 0;
}

.input-login{
    width: 90%;
    padding: 5px;
    font-size: 15px;
    border-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: black;
}
.button-login{
    width: 90%;
    background-color: rgb(31, 30, 30);
    color: white;
    font-size: 17px;
}
.contenedor-img {
    flex: 70%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: 'Nunito Sans', sans-serif;
}
.contenedor-img .carousel-caption{
    left: 0px;
    bottom: 0px;
    background-color: rgba(0,0,0,0.8);
    width: 100%;
    font-family: 'Nunito Sans', sans-serif;
}
@media screen and (max-width: 500px) {
    .contenedor-form {
        flex: 50%;
        height: 100%;
    }
    .contenedor-img {
        flex: 50%;
        height: 100%;
    }
}
@media screen and (max-width: 800px) {
    .contenedor-form {
        flex: 100%;
        height: 100%;
    }
    .contenedor-img {
        display:none;
    }
}