.login-body {
  background-color: var(--bg-variant);
}

.card .login-headline {
  font-size: 5rem;
  font-family: 'Abhaya Libre', serif;
  line-height: 4rem;
}

.login-container {
  color: var(--font-color);
  width: 100%;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-color);
  border-radius: 2px;
  padding: 2rem;
  padding-right: 6rem;
  border: 1px solid var(--primary-color);
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 400px;
}
.card h1 {
  font-size: 3rem;
  color: var(--font-color);
}

.card h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 1rem 0;
}
.google-login {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
}

.google-login img {
  width: 20px;
  margin-right: 10px;
}

/* Footer Styling */
footer {
  display: flex;
  padding: 0.6rem 1rem;
  justify-content: space-between;
}

footer .earls-copyrights {
  display: flex;
  gap: 1rem;
  align-items: center;
}

footer .social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

footer p {
  font-size: 0.7rem;
}

footer .earls_logo {
  width: 60px;
}

.social-icons a {
  color: var(--font-color);
  font-size: 1rem;
  text-decoration: none;
}

.social-icons .twitter-logo {
  color: var(--font-color);
  text-decoration: none;
  margin-top: 0.3rem;
  width: 1rem;
}

/* responsive design */

@media only screen and (max-width: 768px) {
  .login-container {
    width: 96%;
    padding-top: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: auto;
  }
}

/* https://developers.google.com/identity/branding-guidelines */
/* google sign in guidelines */
.gsi-material-button {
  background-color: #f2f2f2;
  background-image: none;
  border: none;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 17px;
  height: 50px;
  letter-spacing: 0.1px;
  outline: none;
  overflow: hidden;
  padding: 0 14px;
  position: relative;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity 0.218s;
  transition: opacity 0.218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
}

.gsi-material-button:disabled .gsi-material-button-state {
  background-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #001d35;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #001d35;
  opacity: 8%;
}
