body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', 'Roboto', sans-serif;
  height: 100%;
}

.shell {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  width: 100%;
}

.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

html, body, #root{
  height: 100%
}

.loader {
  animation: spin infinite 20s linear;
  height: 80px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.oscilloscope {
  border-radius: 30px;
}

.firebaseui-container {
  /* background-color: rgba(0, 0, 0, 0.8) !important; */
  background-color: #EAE4B6 !important;
  border-radius: 10px !important;
  color: #221F1F !important;
}

firebaseui-subtitle,
.firebaseui-title {
  color: #221F1F !important;
}
.firebaseui-textfield.mdl-textfield .firebaseui-input {
  border-color: #221F1F !important;
}
.mdl-textfield__label:after {
  background-color: #221F1F !important;
}
.mdl-textfield__input {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-family: 'Roboto', sans-serif !important;
  color: #221F1F !important;
}
.firebaseui-label {
  color: #221F1F !important;
}
.mdl-button--raised.mdl-button--colored {
  background: #D25758 !important;
  color: #fff;
}
.firebaseui-link {
  color: #221F1F !important;
}
.firebaseui-text {
  color: #221F1F !important;
}
.mdl-button--primary.mdl-button--primary {
  color: #221F1F !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px black inset !important;
  -webkit-text-fill-color: white !important;
}