
.grecaptcha-logo {
  background-color: white;
}

#verification-code-form {
  display:none;
}
#recaptcha-container {
  margin-top: 10px;
  margin-bottom: 20px;
}

#sign-out-button {
  display: none;
}

.recaptcha-container {
  transform: scale(0.9);
  transform-origin:0 0;
  -webkit-transform:scale(0.9);
  -webkit-transform-origin:0 0;
}

.mdl-selectfield__select {
  background:
    linear-gradient(45deg, transparent 50%, rgba(0,0,0, 0.26) 50%),
    linear-gradient(135deg, rgba(0,0,0, 0.26) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-color: transparent;
  background-position:
    calc(100% - 10px) calc(1em - 4px),
    calc(100% - 5px) calc(1em - 4px),
    100% 0;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  border-color: rgba(0,0,0, 0.12);
  border-radius: 0;
  border-style: solid;
  border-width: 0 0 1px 0;
  box-shadow: none;
  box-sizing: border-box;
  height: 26px;
  line-height: 18px;
  margin: 0;
  outline: none !important;
  padding-bottom: 4px;
  padding-top: 4px;
  width: 100%;
  -moz-appearance:none;
  -moz-box-sizing: border-box;
  -webkit-appearance:none;
  -webkit-box-sizing: border-box;
}
.mdl-selectfield__label {
  color: rgba(0,0,0, 0.26);
  display: block;
  font-size: 16px;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: relative;
  text-align: center;
  top: -23px;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  width: 100%;
}
.mdl-selectfield__label.is-active {
  color: rgb(255,152,0);
  font-size: 12px;
  top: -40px;
}
.blinking{
  animation: blinkingText 1.2s infinite;
}
@keyframes blinkingText {
  0% { color: #ff0000; }
  49% { color: transparent; }
  50% { color: transparent; }
  99% { color: #ff0000; }
  100% { color: #ff0000; }
}