body{
	font-family: 'Noto Sans', 'baloo 2';
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

/************************************** CSS INDEX *********************************************/
.main_index{
    background-color: #42A5F5;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.row_login{
    margin-top: 10vh;
}

@media only screen and (max-width: 450px) { /*para moviles*/
    .row_login{
        margin-top: 2vh;
    }
}

.login_div_derecho{
    flex: 1;
    background-image: url('../images/login.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
}

@media only screen and (max-width: 450px) { /*para moviles*/
    .login_div_derecho{
        height: 170px !important;
        width: 100%;
        background-position: 0px -160px;
    }
}


/************************************** FORMS *********************************************/

.normal input{
    border: 1px solid #bcbcbc !important;
    font-size: 14px !important;
}

.normal input:focus{
    box-shadow: 0 1px 0 0 #38743b !important;
}

.normal.col label {
    left: 1rem;
}

.normal>label {
    top: -4px;
}

.normal>label:not(.label-icon).active {
    top: 0px !important;
    color: #38743b !important;
}

.normal select{
    display: block;
    border: 1px solid #bcbcbc !important;
    font-size: 14px !important;
    background: none !important;
    margin: 0px 0 7px 0;
}

input[type=text]:not(.browser-default):focus:not([readonly]) , input[type=number]:not(.browser-default):focus:not([readonly]) , textarea.materialize-textarea:focus:not([readonly])
{
    border-bottom: 1px solid #4CAF50;
    box-shadow: 0 1px 0 0 #4CAF50;
}


/****************************** GENERALES *************************************************************/

.middle{
    vertical-align: middle !important;
}

.alertToast{
    background: #f44336;
    color: white;
    border-radius: 5px;
    text-align: center;
}

.doneToast{
    background: #4caf50;
    color: white;
}

@media only screen and (max-width: 450px) { /*para moviles*/
    h6{
        font-size: 12px !important;
    }
}