@import "fonts.css";

body {
    font-family:"Web-Roboto-Regular", Arial;
}
.btn, .form-control {
    outline:none !important;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;;
}
.btn, a {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    outline:none !important;
}
.btn-primary {
    background : #4827f3;
}
.btn-black {
    background: #474747;
}
.login-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 60%;

    background: url("../images/background1.jpg") center center no-repeat;
    -webkit-background-size:cover;
    background-size:cover;
}
.bg {

    background: url("../images/background.jpg") fixed no-repeat center center;
    -webkit-background-size:cover;
    background-size:cover;
}
.login-container {
    position : absolute;
    top: 0;
    right : 0;
    bottom : 0;
    width : 40%;
    padding : 50px;

    /*background: #016ca7;*/
	background:#3012d8;
    color: #ffffff;
    float: right;
    text-align : center;
    -webkit-box-shadow: 0 0 29px rgba(0, 0, 0, 0.44);
    -moz-box-shadow: 0 0 29px rgba(0, 0, 0, 0.44);
    box-shadow: 0 0 29px rgba(0, 0, 0, 0.44);

    overflow-y: auto;
}
.main-login h1 {
    text-align: center;
    font-size: 45px;
    font-family:"Web-Roboto-Regular";
    margin : 0;
    margin-bottom: 20px;
}
.main-login h4 {
    font-size:15px;
    font-family:"Web-Roboto-Regular";
    margin-bottom: 40px;
}
.input {
    width: 100%;
    padding: 10px;
    text-align: center;
    color: #555;
    border: none;
    background: #dddddd;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 14px;
    display: block;
    margin-bottom:10px;
    outline:none !important;

    font-family:"Web-Roboto-Regular";
}
.input:focus {
    background : #ffffff;
}
.input::-moz-placeholder {
    color : #7f7f7f;
}
.input::-webkit-input-placeholder {
    color : #7f7f7f;
}
.input:-ms-input-placeholder {
    color : #7f7f7f;
}
.login-container .btn.btn-black {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;

    display: block;
    width : 100%;
    background : #202020;
    padding: 12px 15px;
    text-align: center;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 16px;
    text-transform: uppercase;
    font-family:"Web-Roboto-Bold";
}
.login-container .btn.btn-black:hover {
    background : #e14d24;
    color : #ffffff;
}
.link-lg {
    color : #ffffff;
    display: block;
    text-decoration: none !important;
    font-size:16px;
    background : rgba(255,255,255,0.18);
    border:solid 1px #60a6cc;
    padding:10px;
    -webkit-border-radius:20px;
    -moz-border-radius:20px;
    border-radius:20px;
    margin-top:20px;
}
.link-lg:hover {
    color : #ffffff;
    border:solid 1px #ffffff;
    background : rgba(255,255,255,0.3);
}
.link-lg .fa {
    margin-left: 10px;
    font-size: 20px;
    height: 25px;
    vertical-align: middle;
}
.copyright {
    margin-top:20px;
    font-size:13px;
    font-family: "Web-Roboto-Light";
}
.container {
    background: #eeeeee;
    padding : 0;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
    margin :50px auto;
}
.container-header {
    background : #016ca7;
    color : #ffffff;
    text-align: center;
    padding:30px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
.container-header h1 {
    margin : 0 0 20px 0;
    font-size:28px;
}
.container-header .text-info {
    background: #015380;
    color : #ffffff;
    padding:20px;
    font-size:12px;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
}
.container-link {
    padding:10px 10px 0;
    text-align: center;
}
.container-link a {
    display: inline-block;
    padding: 10px 15px;
    margin : 5px 5px 0;
    font-size:12px;
    background : #016ca7;
    cursor: pointer;
    color : #ffffff;
    width : 160px;
    text-decoration: none !important;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
}
.container-link a:hover {
    background : #015380;
}
.container-link a.black {
    background : #474747;
}
.container-link a.black:hover {
    background : #2d2d2d;
}
.form {
    padding:10px 20px;
}
.form fieldset {
    padding : 20px;
    margin : 10px 0;
    background: #ffffff;
    -webkit-box-shadow:  0 0 4px rgba(0,0,0,0.1);
    -moz-box-shadow:  0 0 4px rgba(0,0,0,0.1);
    box-shadow:  0 0 4px rgba(0,0,0,0.1);
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
}
.form .form-group {
    border-bottom:dashed 1px #e0e0e0;
    padding-bottom:10px;
    margin-bottom: 10px;
}
.form fieldset .form-group:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.footer {

    background : #474747;
    padding: 20px;
    text-align: center;
    color : #ffffff;
    font-size:13px;
}
.footer a {
    color: #ffffff;
}
.modal-content {
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
}
.modal-title {

    text-transform: uppercase;
    font-size: 17px;
    font-family: "Web-Roboto-Bold";
}
.form-control.error {
    border-color:red;
    box-shadow:inset 0px 1px 3px #ccc;
}
.error {
    color : red;
}
label.error {
    font-size:11px;
}

@media screen and (max-width: 870px) {

    .login-bg, .login-container {
        width:auto;
        left : 0;
        right : 0;
    }
    .login-container {
        background: rgba(1, 108,167, 0.9);
    }
}
@media (min-width: 992px) {
    .container {
        width : 780px;
    }
}
@media (min-width: 1200px) {
    .container {
        width : 780px;
    }
}