/* ==========================================================
        General Demo Styles [not related to navbar]
   ==========================================================*/
/*@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";*/


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #eee !important;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #eee !important;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #eee !important;
}
:-moz-placeholder { /* Firefox 18- */
  color: #eee !important;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  line-height: 60px; /* Vertically center the text there */
  background-color: #f5f5f5;
}

.form-control-xs {
    height: calc(1em + .375rem + 2px) !important;
    padding: .1rem .25rem !important;
    font-size: .70rem !important;
    line-height: 1.25;
    border-radius: .2rem;
}

.form-check-xs {
    padding: .1rem .25rem !important;
    font-size: .70rem !important;
    line-height: 1.25;
    border-radius: .2rem;
}


.textarea-xs {
    padding: .1rem .25rem !important;
    font-size: .70rem !important;
    line-height: 1.25;
    border-radius: .2rem;
}

.col-form-label-xs {
    height: calc(1em + .375rem + 2px) !important;
    padding: .1rem .25rem !important;
    font-size: .70rem !important;
    line-height: 1.25;
}

.auto-width {
    width: auto;
  }
  
.login-form {
	width: 300px;
	margin: 0 auto;
	font-family: Tahoma, Geneva, sans-serif;
}
.login-form h1 {
	text-align: center;
	color: #4d4d4d;
	font-size: 24px;
	padding: 20px 0 20px 0;
}
.login-form input[type="password"],
.login-form input[type="text"],
.login-form input[type="email"]{
	width: 100%;
	padding: 15px;
	border: 1px solid #dddddd;
	margin-bottom: 15px;
	box-sizing:border-box;
}
.login-form input[type="submit"] {
	width: 100%;
	padding: 15px;
	background-color: #535b63;
	border: 0;
	box-sizing: border-box;
	cursor: pointer;
	font-weight: bold;
	color: #ffffff;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rotate {
  animation: rotation 16s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}