html {
    min-height: 100vh;
    position: relative;
}

body {
    margin: 0;
    /* color:#6a6f8c; */
    /* font:600 14px/18px 'Muli',sans-serif; */
    font-family: 'Muli', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fff;
}


/* .loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../images/loader.gif') 50% 50% no-repeat rgb(249,249,249);
    opacity: .8;
} */

*,
:after,
:before {
    box-sizing: border-box
}

.clearfix:after,
.clearfix:before {
    content: '';
    display: table
}

.clearfix:after {
    clear: both;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}


/*login*/

.main-content {
    width: 90%;
    /*border-radius: 20px;*/
    box-shadow: 0 8px 8px rgba(0, 0, 0, .4);
    margin: 3em auto;
    display: flex;
}

.company__info {
    border-top: 1px solid #ccc;
    background-color: #ffffff;
    /*border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

@media screen and (max-width: 640px) {
    .main-content {
        width: 90%;
    }

    .company__info {
        display: none;
    }

    .login_form {
        /*border-top-left-radius:20px;
		border-bottom-left-radius:20px;*/
    }
}

@media screen and (min-width: 642px) and (max-width:800px) {
    .main-content {
        width: 70%;
    }
}

.row>h2 {
    color: #008080;
}

.login_form {
    background-color: #fff;
    /*border-top-right-radius:20px;
	border-bottom-right-radius:20px;*/
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

form {
    padding: 0 2em;
}

.form__input {
    width: 100%;
    border: 0px solid transparent;
    border-radius: 0;
    border-bottom: 1px solid #aaa;
    padding: 1em .5em .5em;
    /*padding-left: 2em;*/
    outline: none;
    margin: 1.5em auto;
    /*transition: all .5s ease;*/
}

.form__input:focus {
    border-bottom-color: #008080;
    box-shadow: 0 0 5px rgba(0, 80, 80, .4);
    border-radius: 4px;
}

.btn1 {
    transition: all .5s ease;
    width: 100%;
    border-radius: 30px;
    color: #008080;
    font-weight: 600;
    background-color: #fff;
    border: 1px solid #008080;
    margin-top: 1.5em;
    margin-bottom: 1em;
}

.btn1:hover,
.btn1:focus {
    background-color: #008080;
    color: #fff;
}


/*login*/


/*up file*/


/* .form {
    position: absolute;
    // top: 50%; 
    left: 50%;
    // margin-top: -100px; 
    margin-left: -250px;
    width: 500px;
    height: 150px;
    border: 4px dashed darkgray;
}

.form p {
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 170px;
    color: #000;
    font-family: Arial;
}

.form input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
}

*/