html,
body {
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", SegoeUI, "Helvetica Neue", Helvetica, Tahoma, Geneva,
    Arial, sans-serif;
}
a,
a:active {
  color: #00a3ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  color: #060d19;
  background: #fff;
}

:focus-visible {
  outline: 2px dotted #00a3ff;
}

.loginContainer {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "header header"
    "info login"
    "footer footer";
}

.loginLeftPanel {
  background: #f6f7fb;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  grid-area: info;
}

.header {
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-area: header;
}
.langLink {
  display: inline-flex;
  padding: 0.25rem;
  align-items: center;
  font-size: 0.75rem;
}
.langLink:hover {
  background: rgb(0 163 255 / 9%);
  text-decoration: none;
}
.appTitle {
  color: #4285f4;
  font-size: 2.5rem;
}
.appLogo {
  height: 18rem;
}
.loginRightPanel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  grid-area: login;
}

.desc {
  padding: 0 2rem;
}
.btnLoginGuest {
  padding: 0.25rem;
  cursor: pointer;
  text-decoration: underline;
  border: 0;
  background: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.btnLoginGuest:hover {
  color: #00a3ff;
}
.btnSignIn {
  padding: 1rem 1rem 1rem 3.5rem;
  cursor: pointer;
  border: 1px solid #dedede;
  border-radius: 4px;
  background: #fff;
  background-repeat: no-repeat;
  background-position: 1rem center;
  background-size: 2rem;
  box-shadow:
    0 4px 8px -2px #60606026,
    0 0 1px #6060604f;
  font-size: 0.875rem;
  color: #4c4c4c;
  min-width: 12.5rem;
  transition: all 0.25s linear;
}
.btnSignIn:hover {
  border-color: #00a3ff;
  transition: all 0.25s linear;
}

.gmail {
  background-image: url(../icons8-gmail-48.png);
}
.linkedIn {
  background-image: url(../icons8-linkedin-48.png);
}

.policypop {
  display: flex;
  position: absolute;
  inset-block-end: 2rem;
  inset-inline: 0;
  padding: 1rem;
  background-color: rgba(81, 155, 205, 0.52);
  border: 1px solid rgb(81, 155, 205);
}
.btnClosePop {
  position: absolute;
  inset-inline-end: 0.5rem;
  inset-block-start: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  font-weight: 600;
  height: 2rem;
  width: 2rem;
  line-height: 1;
  font-size: 1.5rem;
}
.hide {
  visibility: hidden;
}
.authLink:active > button {
  background-color: #f0faff;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  grid-area: footer;
  padding: 0.5rem 1rem;
  border-top: 1px solid rgb(204 204 204 / 54%);
}

@media screen and (max-width: 700px) {
  .loginContainer {
    grid-template-columns: 100%;
    grid-template-areas:
      "header"
      "info"
      "login"
      "footer";
    grid-template-rows: auto auto 1fr auto;
  }
  .loginLeftPanel {
    padding: 2rem 1.5rem;
  }
}
