* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: Trebuchet MS;
}

/* IE10+ Inputs */
input::-ms-clear, input::-ms-reveal {
    display: none;
}

body {
    background: #000;
}

#login-form {
    width: 350px;
    padding: 0px 30px;
    background: #232323;
	color: #F5F5F5;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#copyright {
    width: 100%;
    left: 0;
    position: fixed;
    text-align: center;
    bottom: 0;
    margin-bottom: 0;
    padding: 5px 0;
    font-size: 1em;
    font-weight: 400;
    font-family: Trebuchet MS;
    line-height: 1.2;
    color: #F5F5F5;
    background-color: #232323;
}

#form-changepwd {
    font-size: 0.9em;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    height: 50px;
    border: none;
    padding: 5px 7px 5px 15px;
    color: #F5F5F5;
    background-color: #3A3A3B !important;
    border: 2px solid #515152;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.form-control:focus, .form-control:focus + .fa, .form-control:focus:after {
	border-color: #00D773  !important;
}

.form-group .fa {
    position: absolute;
    right: 15px;
    top: 17px;
    color: #F5F5F5;
}

.log-status.wrong-entry {
    -moz-animation: wrong-log 0.3s;
    -webkit-animation: wrong-log 0.3s;
    animation: wrong-log 0.3s;
}

.log-status.wrong-entry .form-control, .wrong-entry .form-control + .fa {
    border-color: #FF6E64;
    color: #FF6E64;
}

.log-btn {
    background: #00D773;
    display: inline-block;
    width: 100%;
    font-size: 16px;
    height: 50px;
    color: #00150B;
    text-decoration: none;
    border: none;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 15px;
	cursor: pointer;
}

.log-btn:hover {
    background: #43FE99;
    color: #00150B;
}

.link {
    text-decoration: none;
    color: #00D773;
    float: right;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 15px;
}

.link:hover {
    text-decoration: underline;
    color: #43FE99;
}

.back {
    text-align: right;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.hide {
    display: none;
}

.info-msg {
    margin-bottom: 15px;
    font-size: 0.8em;
}
.info-msg-title {
    font-style: normal;
}
.info-msg-text {
    font-size: 13px;
}

#info-tips, #info-tips-end {
    padding: 10px;
    border: 2px solid #515152;
    background-color: #3A3A3B;
	color: #F5F5F5;
}

#info-tips-msg {
    font-size: 0.8em;
    text-align: justify;
}

#msg-end {
    margin-bottom: 15px;
}

#logo_index {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
}

.btn-disabled {
    background-color: #3A3A3B !important;
    border-color: #515152 !important;
    color: #F5F5F5 !important;
    cursor: default !important;
    opacity: 0.5 !important;
	cursor: not-allowed !important;
}

.ui-state-error {
	margin-top: 5px;
    padding: 10px;
    font-family: Trebuchet MS;
    border: 1px solid #FF6E64;
    color: #FF6E64;
	background: #2E1206;
}

@-moz-keyframes wrong-log {
    0%, 100% {
        left: 0px;
    }

    20%, 60% {
        left: 15px;
    }

    40%, 80% {
        left: -15px;
    }
}

@-webkit-keyframes wrong-log {
    0%, 100% {
        left: 0px;
    }

    20%, 60% {
        left: 15px;
    }

    40%, 80% {
        left: -15px;
    }
}

@keyframes wrong-log {
    0%, 100% {
        left: 0px;
    }

    20%, 60% {
        left: 15px;
    }

    40%, 80% {
        left: -15px;
    }
}
