@font-face {
    font-display: auto;
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-shadow: 1px 1px 1px x(0,0,0,0.004);
    font-family: 'Mulish', sans-serif;
    font-size:16px;
    background:#f7f7f7;
}

main {
    padding:50px 0px;
}

header {
    -webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,0.10);
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background:#fff;
}

header .logo img {
    height:35px;
}

#login {
    padding:50px 0px;
    display:flex;
    align-items:center;
}

.login-box {
    padding:30px;
    width:100%;
    max-width:400px;
    -webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,0.10);
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.10);
    margin:0 auto;
    background:#fff;
}

.login-box .logo {
    height:50px;
    margin-bottom:30px;
    text-align:center;
}

.login-box .logo img {
    height:100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 45px;
    padding: 0px 30px;
    background: #000;
    color: #fff !important;
    font-weight: 600;
    font-size: 1em;
    border-radius: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border:none;
}

label {
    font-size:14px;
    display:block;
    margin-bottom:5px;
}

.page-option {
    padding:30px;
    width:100%;
    -webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,0.10);
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.10);
    margin-bottom:30px;
    background:#fff;
}

.page-option .title {
    font-size:1.5em;
    font-weight:700;
    margin-bottom:15px;
}

.select {
    height: 50px;
    border: 1px solid #eee;
    border-radius: 3px;
    position:relative;
    overflow:hidden;
}

.select:after {
    display:block;
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ea17";
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    right:0;
}

.select select {
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    border:none;
    padding:0px 20px;
    outline:none;
    background:transparent;
    z-index:1;
}

.hidden {
    display:none;
}

.logout {
    color:#c0392b;
    font-weight:bold;
    display:flex;
    align-items:center;
}

.logout i {
    margin-right:7px;
}
