/*
	iFlightOps login css
	Colors:
        White       #F4F4F4
        Red         #F26C48
        Lightblue   #6AC2ED
        Mediumblue  #3C4C80
        Darkblue    #2C385E
        Blackblue   #1D2640
        
*/


/* Regular */
@font-face {
    font-family: 'LeagueGothic';
    src: url('/fonts/leaguegothic-regular-webfont.eot');
    src: url('/fonts/leaguegothic-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/leaguegothic-regular-webfont.woff') format('woff'),
         url('/fonts/leaguegothic-regular-webfont.ttf') format('truetype'),
         url('/fonts/leaguegothic-regular-webfont.svg#league_gothicregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansregular';
    src: url('/fonts/OpenSans/OpenSans-Regular-webfont.eot');
    src: url('/fonts/OpenSans/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/OpenSans/OpenSans-Regular-webfont.woff') format('woff'),
         url('/fonts/OpenSans/OpenSans-Regular-webfont.ttf') format('truetype'),
         url('/fonts/OpenSans/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

.textField {
    color: #1D2640;
    background-color: #F4F4F4;
    font-size: 12px;
    border-radius: 3px;
    margin: 5px 0px;
    width:100%;
    padding: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}


body:before 
{ 
   content: "";
   position: fixed;
   top: -10px;
   left: 0;
   width: 100%;
   height: 10px;
   z-index: 100;
   -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
   -moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
   box-shadow: 0px 0px 10px rgba(0,0,0,.8);
   }

body {
	background-color: #1D2640;
    font-family: "open_sansregular",Arial, Helvetica, sans-serif;;
}

h1 {
    font-family: "LeagueGothic";
    color: #F4F4F4;
}


.logoImg {
    margin: 5px;
    border: 2px solid #F4F4F4;
    background-color: #F4F4F4;
}
  
#headerBox {
	width: 300px;
    text-align: center;
	padding: 3px;
	border: none;
    padding-top: 30px;
}

#loginBox {
    margin: 0px 20px 20px 20px;
}

#infoBox {
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #2C385E;
    background-color: #6AC2ED;
    text-align: center;
	font-weight: bold;
	padding: 5px;
	margin: 5px 20px;
	font-size: 12px;
}


#warningBox {
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #F4F4F4;
    background-color: #F26C48;
    text-align: center;
	font-weight: bold;
	padding: 5px;
	margin: 5px 20px;
	font-size: 12px;
}

#centerBox {
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #2C385E;
    -moz-border-radius: 3px;
    border-radius: 3px;
    z-index: 100;
    min-height: 280px;
    margin-top: -170px;
    width: 300px;
    margin-left: -150px;
    padding-bottom: 30px;
}

#footerBox {
    display:block;
    position:absolute;
    bottom:0;
    padding: 2px;
    right:0;
    width:100%;
    font-size: xx-small;
    text-align: center;
    background-color:#2C385E;
    color: #6AC2ED;
 }

.flat-button {
    float:right;
	margin-top: 10px;
	margin-right: 0px;
	padding: 10px 26px;
	font-size: 12px;
	line-height: 100%;
	text-shadow: 0 1px rgba(0, 0, 0, 0.4);
	color: #F4F4F4;
	display:inline-block;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
	font-weight: bold;
	transition: background 0.1s ease-in-out;
	-webkit-transition: background 0.1s ease-in-out;
	-moz-transition: background 0.1s ease-in-out;
	-ms-transition: background 0.1s ease-in-out;
	-o-transition: background 0.1s ease-in-out;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-family: 'open_sansregular', Helvetica, sans-serif;
	background-color: #F26C48;
	box-shadow: 0px 3px 0px 0px #D24C28;
}
.flat-button:active {
	padding-top: 11px;
        margin-bottom: -1px;
	box-shadow: 0px 1px 0px 0px #C23C18;
}
.flat-button, .flat-button:hover, .flat-button:active {
	outline: 0 none;
	text-decoration: none;
	color: #f4f4f4;
}

.flat-button:hover {
	background-color: #E25C38;
}

@media screen and (max-width: 430px) {

    #centerBox {
        position: absolute;
        left: 50%;
        top: 50%;
        background-color: #2C385E;
        -moz-border-radius: 3px;
        border-radius: 3px;
        z-index: 100;

        height: 320px;
        margin-top: -210px;

        width: 300px;
        margin-left: -150px;
    }

}