/* #####################################################################
   #
   #   Project       : Modal Login with jQuery Effects
   #   Author        : Rodrigo Amarante (rodrigockamarante)
   #   Version       : 1.0
   #   Created       : 07/28/2015
   #   Last Change   : 08/02/2015
   #
   ##################################################################### */
  

#login-modal .modal-dialog {
	width: 350px;
	margin: 10% auto;
}

#login-modal h1{
	text-align: center;
	font-size: 1.8em;
	line-height: 0.1em;
}

#login-modal input[type=text], input[type=password] {
	height:45px;
}

#div-login-msg,
#div-lost-msg,
#div-register-msg {
    height: 44px;
    line-height: 44px;
    transition: all ease-in-out 500ms;
}

#div-login-msg.success,
#div-lost-msg.success,
#div-register-msg.success {
    background-color: #c8f7c5;
}

#div-login-msg.error,
#div-lost-msg.error,
#div-register-msg.error {
    background-color: #ffcad1;
}

#icon-login-msg,
#icon-lost-msg,
#icon-register-msg {
    width: 44px;
    float: left;
    line-height: 44px;
    text-align: center;
    background-color: #eee;
    margin-right: 5px;
    transition: all ease-in-out 500ms;
}

#icon-login-msg.success,
#icon-lost-msg.success,
#icon-register-msg.success {
    background-color: #68c3a3 !important;
}

#icon-login-msg.error,
#icon-lost-msg.error,
#icon-register-msg.error {
    background-color: #eb575b !important;
}

/* #########################################
   #    override the bootstrap configs     #
   ######################################### */
.modal-open .modal {
    overflow-y: scroll;
}
.input-group {
	margin-top: 15px;
}
.footer-input-group {
	height: 50px;
}
.input-group-addon {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.btn-primary {
    color: #fff;
    background-color: #009aff;
}
.btn-primary:hover {
    background-color: #009aff;
	-webkit-box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.35);
	box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.35);
}
.modal-content {
    background-color: #fff;
    border: 1px solid #bdc3c7;
    border-radius: 0px;
    outline: 0;
}
.modal-header {
    min-height: 16.43px;
    padding: 15px 15px 15px 15px;
    border-bottom: 0px;
}

.modal-body {
    position: relative;
    padding: 5px 15px 5px 15px;
}
.modal-footer {
    padding: 15px 15px 15px 15px;
    text-align: left;
    border-top: 0px;
}
.checkbox {
    margin-bottom: 0px;
}

.btn {
    border-radius: 0px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
}
.btn-lg, .btn-group-lg>.btn {
    border-radius: 0px;
}
.btn-link {
    padding: 5px 10px 0px 0px;
    color: #95a5a6;
}
.btn-link:hover, .btn-link:focus {
    color: #2c3e50;
    text-decoration: none;
}

.glyphicon {
    top: 0px;
}
.form-control {
  border-radius: 0px;
}
@media (max-width: 768px) {
	#login-modal .modal-dialog{
		width:300px;
	}
}