.btn {
  border: none;
  font-size: 14px;
  padding: 8px 14px;
  line-height: 1.4;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-weight: bold;
}
.btn:active {
  -moz-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1) inset;
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1) inset;
}

.btn-default {
  background: #585c65;
  color: #fff;
}
.btn-default:hover {
  background: #4a4d55;
}

.btn-info {
  background: #007fe4;
  color: #fff;
}
.btn-info:hover {
  background: #006ec5;
}

.btn-large {
  font-size: 16px;
  padding: 8px 16px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.btn-block {
  display: block;
  width: 100%;
}

button {
  display: block;
  height: 48px;
  padding: 5px 14px;
  border: none;
  background: #007fe4;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  margin: 5px 0px;
}

button.inline {
  display: inline-block;
  margin-right: 40px;
}

button.accept:hover {
  background-color: green;
}

button.refuse:hover {
  background-color: red;
}

body {
  font-family: Lato, sans-serif;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2013 Daniel Eden
*/
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="datetime"],
input[type="email"],
select,
textarea {
  display: block;
  width: 100%;
  height: 42px;
  padding: 5px 10px;
  border: solid 2px #dbdde1;
  color: #40434a;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
input[type="text"]:hover,
input[type="password"]:hover,
input[type="number"]:hover,
input[type="date"]:hover,
input[type="datetime"]:hover,
input[type="email"]:hover,
select:hover,
textarea:hover {
  border-color: #cacdd3;
  -moz-transition: border-color 200ms ease-in-out 0ms;
  -o-transition: border-color 200ms ease-in-out 0ms;
  -webkit-transition: border-color 200ms ease-in-out;
  -webkit-transition-delay: 0ms;
  transition: border-color 200ms ease-in-out 0ms;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: #2bbfee;
  -moz-transition: border-color 200ms ease-in-out 0ms;
  -o-transition: border-color 200ms ease-in-out 0ms;
  -webkit-transition: border-color 200ms ease-in-out;
  -webkit-transition-delay: 0ms;
  transition: border-color 200ms ease-in-out 0ms;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

select {
  font-weight: normal;
  padding: 5px;
  font-size: 13px;
}

::-webkit-input-placeholder {
  color: #757575;
}

:-moz-placeholder {
  color: #757575;
}

::-moz-placeholder {
  color: #757575;
}

:-ms-input-placeholder {
  color: #757575;
}

.alert-local, .alert-global {
  position: relative;
  list-style-type: none;
  border: solid 2px;
}

.alert-local {
  margin: 8px 0 0;
  padding: 8px 12px;
  font-size: 0.85em;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  animation-name: fadeInDown;
  animation-duration: 0.26s;
  animation-fill-mode: both;
}

.alert-global {
  margin: 0 0 24px;
  padding: 14px;
  font-size: 0.90em;
  font-weight: 600;
  text-align: center;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  animation-name: bounceIn;
  animation-duration: 0.68s;
  animation-fill-mode: both;
}

.alert-local:before {
  bottom: 100%;
  left: 10%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-width: 7px;
  margin-left: -7px;
}

.error {
  border-color: #ffbdbd;
  background: #ffebeb;
  color: #660000;
}
.error:before {
  border-color: rgba(255, 189, 189, 0);
  border-bottom-color: #ffbdbd;
}

.warning {
  border-color: #ffe6ae;
  background: #fff4dc;
  color: #573c00;
}
.warning:before {
  border-color: rgba(255, 230, 174, 0);
  border-bottom-color: #ffe6ae;
}

.success {
  border-color: #c4ffaa;
  background: #e4ffd8;
  color: #1a5300;
}
.success:before {
  border-color: rgba(196, 255, 170, 0);
  border-bottom-color: #c4ffaa;
}

.info {
  border-color: #b6dfff;
  background: #e4f3ff;
  color: #00355f;
}
.info:before {
  border-color: rgba(182, 223, 255, 0);
  border-bottom-color: #b6dfff;
}

fieldset {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  padding: 2em;
  border-color: #dbdde1;
}
fieldset > label {
  margin-bottom: 1em;
  display: block;
}
fieldset > label > span {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  color: #222;
}

header .title {
  color: #999;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.9em;
  padding: 1em;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
}
header .title:hover {
  color: inherit;
}

.form-signin {
  width: 360px;
  margin: 100px auto 100px;
}

.form-signin-heading {
  font-size: 1.3em;
  font-weight: 300;
  text-align: center;
  margin-bottom: 40px;
}
.form-signin-heading strong {
  font-weight: 800;
}

.form-signin-element {
  margin-bottom: 18px;
}

.form-signin-submit {
  margin-top: 20px;
}
.form-signin-submit label,
.form-signin-submit button {
  display: block;
  width: 50%;
  float: left;
  height: 48px;
  padding: 5px 14px;
}
.form-signin-submit label {
  line-height: 38px;
  background: #f1f2f4;
  font-size: 0.9em;
  cursor: pointer;
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.form-signin-submit label span:before {
  content: '\f0c8';
  font-family: FontAwesome;
  font-size: 1.3em;
  color: #c9cdd5;
  margin-right: 10px;
  vertical-align: middle;
}
.form-signin-submit label.checked {
  background: #e9f0f4;
}
.form-signin-submit label.checked span:before {
  content: '\f14a';
  color: #2bbfee;
}
.form-signin-submit input[type="checkbox"] {
  display: none;
}
