* {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body {
  background-color: #f1f1f1;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  margin: 10px;
  background-color: white;
}

.button {
  border: none;
  color: white;
  text-align: center;
  width: 250px;
  font-size: 16px;
  padding: 8px 4px;
  border-radius: 4px;
}

.button:hover {
  opacity: 0.9;
  cursor: pointer;
}

.green {
  background-color: #04AA6D; /* Green */
}

#navbar {
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.55); /* Use a lower opacity, such as 0.5 */
  backdrop-filter: blur(10px); /* Keep the blur at 10px for a shaded glass effect */
}

.navbar-options a {
  text-decoration: none;
  color: #f2f2f2;
  margin: 0 10px;
  font-size: 20px;
}

.logo-part {
  display: flex;
  padding: 2px 20px;
  align-items: center;
  flex-direction: row;
}

.logo-wrapper {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  color: #f2f2f2;
}

.logo-wrapper a {
  padding: 0;
  margin: 0;
  display: flex;
  text-decoration: none;
  color: #f2f2f2;
}

.logo-wrapper a h1 {
  margin: 0;
  padding: 0;
}

.logo-wrapper a > * {
  margin: 0 5px;
}

.flex1 {
  display:flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  background-color: antiquewhite;
}

.flex {
  display:flex;
  flex-direction:column;
  align-items: center;
}
.gap {
  gap: 10px;
}

input {
  padding: 8px 4px;
}

.loader{
  display: block;
  position: relative;
  height: 10px;
  width: 70px;
  background-image: 
  linear-gradient(#FFF 10px, transparent 0), 
  linear-gradient(#FFF 10px, transparent 0), 
  linear-gradient(#FFF 10px, transparent 0), 
  linear-gradient(#FFF 10px, transparent 0);
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: 0 0, 20px 0, 40px 0, 60px 0;
  animation: pgfill 1s linear infinite;
}

@keyframes pgfill {
  0% { background-image: linear-gradient(#FFF 10px, transparent 0), linear-gradient(#FFF 10px, transparent 0), linear-gradient(#FFF 10px, transparent 0), linear-gradient(#FFF 10px, transparent 0); }
  25% { background-image: linear-gradient(#536c92 10px, transparent 0), linear-gradient(#FFF 10px, transparent 0), linear-gradient(#FFF 10px, transparent 0), linear-gradient(#FFF 10px, transparent 0); }
  50% { background-image: linear-gradient(#536c92 10px, transparent 0), linear-gradient(#536c92 10px, transparent 0), linear-gradient(#FFF 10px, transparent 0), linear-gradient(#FFF 10px, transparent 0); }
  75% { background-image: linear-gradient(#536c92 10px, transparent 0), linear-gradient(#536c92 10px, transparent 0), linear-gradient(#536c92 10px, transparent 0), linear-gradient(#FFF 10px, transparent 0); }
  100% { background-image: linear-gradient(#536c92 10px, transparent 0), linear-gradient(#536c92 10px, transparent 0), linear-gradient(#536c92 10px, transparent 0), linear-gradient(#536c92 10px, transparent 0); }
}

button {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 17px;
  padding: 10px 15px; 
  font-weight: 500;
  background: #1f2937;
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 0.6em;
  cursor: pointer;
}

.gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0.6em;
  margin-top: -0.25em;
  background-image: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.3)
  );
}

.label {
  position: relative;
  top: -1px;
}

.transition {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 500ms;
  background-color: #536c92;
  border-radius: 9999px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

button:hover .transition {
  width: 14em;
  height: 14em;
}

button:active {
  transform: scale(0.97);
}