.login-wrapper{
    display: flex;
    flex-direction: row; 
    width: 100%;
    min-height: 100vh;
    padding: 0px;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-image: url('./img/web.png');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.login-box-custom {
    width: 25%;
}

.login-box-custom .login-box-body {
    background: rgba(45, 40, 109, 0.6);
    /* background-color: rgba(191, 191, 191, 0.8) */
}

.login-box-custom .login-box-body .login-box-title{
    color : #FFFFFF;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
}

.login-button{
    text-align: center;
    width: 30%;
    margin: 0 auto;
}

.btn.btn-red{
    background-color:#DE2021;
    border-color:#DE2021;
    color: #fff;
}
.btn.btn-red:hover{
    background-color:#ba1a1a;
    border-color:#ba1a1a;
    color: #fff;
}

.form-control-square{
    border-radius: 0px;
}

.form-group.has-error label {
    color: #DE2021;
}

.text-danger {
    color: #DE2021;
}

.bg-red, .callout.callout-danger, .alert-danger, .alert-error, .label-danger, .modal-danger .modal-body{
    background-color: #DE2021 !important;
    border-radius: 0px;
    animation-name: bounceIn;
    animation-duration: 450ms;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.text-white {
    color: #FFFFFF;
}

@media only screen and (min-width: 1200px){

    .row-web {
        clear: both;
        padding: 10px;
    }

}

@keyframes bounceIn{
    0%{
      opacity: 0;
      transform: scale(0.3) translate3d(0,0,0);
    }
    50%{
      opacity: 0.9;
      transform: scale(1.1);
    }
    80%{
      opacity: 1;
      transform: scale(0.89);
    }
    100%{
      opacity: 1;
      transform: scale(1) translate3d(0,0,0);
    }
}

@media only screen and (max-width: 600px) {
    .login-box-custom{
        width: 90% !important;
    }
}


@media only screen and (min-width: 601px) and (max-width: 900px) {
    .login-box-custom{
        width: 60% !important;
    }
}