* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  background: #f5f5f5;
  font-family: Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  min-height: 100vh;
  justify-content: space-between;
}

input, 
button {
  outline: 0;
}

div.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

div.container img {
  height: 200px;
}

div.container form .form-control {
  width: 250px;
}

div.container form .alert {
  font-size: 14px;
  width: 250px;
}

div.container form button {
  width: 250px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: flex-end;

}

footer img {
  height: 20px;
  margin-top: -20px;
  margin-right: 5px;
}

footer p {
  font-size: 12px;
}


@media (max-width: 575.98px) { 
  div.container {
    margin-top: 50px;
  }

  div.container img {
    height: 180px;
  }
}


.notice {
  padding: 15px;
  background-color: #fafafa;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
     -moz-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
          box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
}
.notice-sm {
  padding: 10px;
  font-size: 80%;
}
.notice-lg {
  padding: 25px;
  font-size: large;
}
/* Danger */
.notice-danger {
  border-left: 6px solid #f8d7da !important;
}
.notice-danger>strong {
  color: #721c24;
}
