.login_background
{
   margin:0;
   background-image: url('../images/main_background.jpg');
   width: 100%;
   min-height: 100vh;
   display: -webkit-box;
   display: -webkit-flex;
   display: -moz-box;
   display: -ms-flexbox;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   padding: 15px;
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   position: relative;
   z-index: 1;

   box-sizing: border-box;

   
   overflow-x: auto;
    min-width: auto;

}

.login_background::before
{
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:  #03252cb8;
    background: -webkit-linear-gradient(left, #03252cb8, #181c028f);
    background: -o-linear-gradient(left, #03252cb8, #181c028f);
    background: -moz-linear-gradient(left, #03252cb8, #181c028f);
    background: linear-gradient(left, #03252cb8, #181c028f);
    pointer-events: none;
    box-sizing: inherit;

}

.form-container
{
    background-color: white;
    padding: 25px 45px;
    border-radius: 15px;
    font-family: 'Catamaran';
}

.title_text
{
    font-size: 28px;
    color: #002b00;
    font-weight: bold;

    margin: 10px 0px 35px 0px;
}

.login_form input
{
    background-color: white;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 15px;
    font-size: 15px;
    border: 2px solid #8d8888;
    font-weight: bold;
}


.login_form input::placeholder
{
    color:#013e2078;
}
.login_redplaceholder::placeholder
{
    color:#e24141 !important;
}

.btn_login
{
    background-color: #014941;
    padding: 10px 20px;
    margin: 15px 5px;
    min-width: 75px;
    display: inline-block;
    border-radius: 10px;
    color: #f5e3ca;
    font-weight: 600;
    text-decoration: none;
}
.btn_login:hover
{
    background-color: #09414d;
    color: #f0cda0 ;
    cursor: pointer;

}

.result_space
{
    width: 100%;
    margin: 10px 0px 10px 0px;
    display: none;
}

/*
-----------------------------------------------
SCREEN DIM
-----------------------------------------------
*/

@media only screen and (max-width: 600px) 
    {

        .login_background {
            overflow-x: hidden;
        }


    }


