* {
    margin: 0;
    padding: 0;

}
body {  
    color: #d2d2d2;
    /* background-image: url(/assets/img/bg_1.png); */
    /* background-color: #101010; */
    background-size: cover;
    height: 100vh;
    background-repeat: repeat;
    width: 100%;
    padding: 5%;
    display: flex;
    justify-content: center;
    font-family: Nunito;
}
h1,
h2,
h3,
h4,
p {
    text-align: center;
}
h3 {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(50, 50, 50, 0.6)
}
p {
    color: #fff;
} 
.img-logo {
    display: none;
}
.main-content {
    background-image: url(/assets/img/bg_2.png);
    background-size: cover;
    background-color: #fff;
    height: 600px;
    border-radius: 30px;
    min-width: 1200px;
    width: auto;
    -webkit-box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.2);
	-moz-box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.2);
	box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.2);
}
.conteudo-principal {
    height: 600px;
}
.fundo-mobile {
    margin-top: 200px;
}
.img-logo-branca {
    max-width: 340px;
    background-color: #fff;
    padding: 12px;
    border-radius: 6px;
    -webkit-box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.2);
    -moz-box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.2);
    box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.2);
}
.login-form {
    background-color: #fff;
    padding: 20%;
    height: 100%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-logo {
    max-width: 200px;
    max-height: 100%;
}
.form-control:focus {
    border-color: #d2d2d2;
    box-shadow: none;
}
.btn-primary {
    margin-top: 32px;
    font-weight: 600;
    min-width: 180px;
    color:white;
    background: #5E72E3;
}  
.btn-primary:hover {
    color: #fff;
    border-color: #913DC6;
    background-color: #913DC6;
}
.flying-paper {
    margin-left: 10px;
}
.text-primary {
    color: white !important;
}
.form-input {
    border-radius: 0px 6px 6px 0px !important;
}
.h3-mobile {
    font-size: 18px;
    margin-bottom: 32px !important;
    font-weight: 500;
    color: #2d2d2d;
}
@media screen and (max-width: 1200px) {
    .login-form {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }
    .form {
        width: 100%;
    }
    .fundo-mobile {
        display: none;
    }
    .img-logo {
        width: 100%;
        margin-top: 32px;
        margin-bottom: 42px;
    }
    .main-content {
        max-width: 700px;
        min-width: 500px;
        width: auto;
    }
    .img-logo {
        display: inline;
    }
}
@media screen and (max-width: 500px) {
    .main-content {
        max-width: 700px;
        min-width: 350px;
        width: auto;
    }
}