@font-face {
    font-family: roboto-black;
    src: url('font/Roboto-Regular.ttf');
}

*
{
	font-family: roboto-black;
}

html {
    height: 100%;
}

body {
    height: 100vh;
    margin: 0;
}

h1 {
    color: #ffffff;
    font-size: 22px;
    padding-left: 30px;
	padding-right: 30px;
}

ul li{
	list-style: none;
	display: block;
	height: 50px;
}

ul li a{
	text-decoration: none;
	color: #ffffff;
	font-size: 10px;
	text-align:right;
}

#login_logo {
    position: absolute;
    left: 30px;
    top: 0;
    height: 250px;
    width: 350px;
}

.centerBox{
		
	width: 400px;
	/*height: 100%;*/
	

	position:relative;

	margin:auto;

    padding-top: 5%;
}

.centerBox img {
    float: left;
}

.centerContent {
    float: left;
    background-color: rgba(0, 0, 0, 0.78);
}

.tabBox
{
	width: 400px;
	height: 50px;
	position: relative;
}

.tabItem
{
	padding: 15px;
	width: 50%;
	float: left;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
}

.tabItem a 
{
	color: #ffffff;
	text-decoration: none;
}

.tab_content
{
    max-height: 60vh;
	margin-top: 10px;
    overflow-y: scroll;
}

.tab_content::-webkit-scrollbar {
    width: 10px;
}

.tab_content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
}

.tab_content::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}


.tab_text
{
	display: block;
	color: #ffffff;
	font-size: 12px;
	padding-left: 30px;
	padding-right: 30px;
}

.loginTextboxIcon
{
	float: left;
	width: 20px;
	color: #ffffff;
	line-height: 2em !important;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #ffffff;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #ffffff;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #ffffff;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #ffffff;
}

.loginTextbox
{
	display: block;
	float: right;
	padding-left:30px;
	padding: 10px;
	border: 0;
	width: 290px;
	box-sizing: border-box;
	margin-right: 30px;
}

.button
{
	box-shadow: 0 2px 3px rgba(0,0,0,0.16), 0 2px 3px rgba(0,0,0,0.23);
	cursor: pointer;
    position: relative;
	display: block;
	float: right;
	height: 36px;
	background: #72b800;
	color: #ffffff;
	border: 0;
	margin-right: 30px;
	padding-left: 16px;
	padding-right: 16px;
}

.loginWith {
    margin-left: 30px;
    margin-right: 30px;
    position: relative;
    margin-bottom: 20px;
}

    .loginWith .external_button {
        width: 100%;
        border-radius: 6px;
        cursor: pointer;
        line-height: 20px;
        padding: 7px;
        font-size: 14px;
        font-weight: bold;
        border: 0;
        margin-bottom: 10px;
    }

.loginWith .external_button img {
    height: 20px;
}

.microsoft_external_button {
    background: #ffffff;
    color: #737373;
}

.aareon_external_button {
    background: #ffffff;
    color: #2a69ec;
}

.facebook_external_button {
    background: #3b5998; 
    color: #ffffff;
}

.google_external_button {
    background: #d21717;
    color: #ffffff;
}

.error {
    background: #ffffff;
	color: #ff0000;
	font-size: 12px;
    padding: 5px;
	margin-left: 30px;
	margin-right: 30px;
}

.error:empty {
    display: none;
}

@media (max-width: 400px) {

    .notification_item
    {
        width: 100%;
    }

    #login_logo {
        top: unset;
        left: 0;
        bottom: 0;
    }
     
    .centerBox {
        width: 100%;
        height: 100%;
        padding-top: 0;
    }

    .centerContent {
        height: 100%;
    }

    .tabBox {
        width: 300px;
    }

    .loginTextbox
    {
        width: 190px;
    }
}