@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* Layout CSS */
html,
body{
	height: 100%;
}

html{
    background: url(image/background.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body{
	background: rgba(0, 0, 0, 0.25);
	font-family: "Open Sans",Tahoma,Geneva,sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: #828c96;
}

a, .btn{
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    text-decoration: none;
}


.login-img{
	width: 75%;
}


/* LOGIN BAR */
.login-bar{
	background-color: #FFF;
}

.login-bar label{
	font-weight: 700;
}


.btn-primary {
    color: #fff;
    background-color: #0076B0;
    border-color: #0076B0;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited{
    color: #fff;
    background-color: #006393;
    border-color: #006393;
}