.firebaseui-title {
	display:none;
}

.firebaseui-label {
	margin-bottom: 1%;
}

.firebaseui-input,
.firebaseui-input-invalid {
	width: 100%;
    padding: 1%;
	background: none;
	border: none;
	border-bottom: 1px solid #ffffff;
	color: #dfdfdf;
}

.firebaseui-button {
	width: 100%;
	background-color: #e74c3c;
	border-color: #e74c3c;
	color: #fff;
	border: 1px solid transparent;
	padding: 1%;
	font-size: 0.9375rem;
	line-height: 1.5;
	border-radius: 0.25rem;
	margin-bottom: 2%;
	transition: background-color 0.5s ease;
}

.firebaseui-button:hover {
	background-color: #b13628;
	color: #fff;
}

.firebaseui-link {
	color: #ebebeb;
}

.firebaseui-link:hover {
	color: #a7a7a7;
	text-decoration: none;
}

.firebaseui-error {
	color: #e74c3c;
}

input {
    color-scheme: dark;
}

.bi-animate {
    animation: spin-animation 1.5s infinite;
    display: inline-block;
  }
  
  @keyframes spin-animation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(359deg);
    }
  }