@font-face {
  font-family: plex-sans;
  src: url(/static/fonts/plex-sans-regular.2afba28a9ce96315436db858db163c47.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: plex-sans;
  src: url(/static/fonts/plex-sans-bold.9505572e17d333f0ffe7131f95a5992d.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html,
body {
  margin: 0;
  padding: 0;
  background: #F8F8F8;
  color: #2e3333;
  font-family: "plex-sans", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: subpixel-antialiased;
  line-height: 1.4;
}
body {
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
}
body::before {
  content: '';
  height: 100vh;
  width: 200vw;
  transform: rotate(-6deg);
  background: #00cbcc;
  position: absolute;
  top: -53vh;
  left: -50vw;
}
.wrapper {
  margin-top: -4vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.card {
  box-sizing: border-box;
  background: #FFF;
  padding: 32px;
  max-width: 450px;
  min-width: 450px;
  border-radius: 3px;
  position: relative;
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.02);
  margin: 8px;
}
@media screen and (max-width: 400px) {
  .card {
    max-width: initial;
    min-width: initial;
    padding: 24px;
  }
}
.card__instructions {
  font-size: 16px;
  font-weight: bold;
  color: #828585;
  text-align: center;
  padding: 0 24px;
}
.card__instructions em {
  color: #2e3333;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
}
.deliveroo-logo {
  margin-bottom: 24px;
  height: 48px;
  width: 48px;
  position: relative;
}
.deliveroo-logo path {
  fill: #FFF;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: 16px;
  text-decoration: none;
  color: #2E3333;
  outline: none;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  word-break: break-all;
}
.button:focus,
.button:hover {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
}
.current-user {
  margin: 32px 0 0 0;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}
.current-user__avatar {
  width: 40px;
  height: 40px;
  background-size: cover;
  border-radius: 3px;
  margin-right: 16px;
  flex-shrink: 0;
}
.current-user__details {
  flex-grow: 1;
}
.current-user__email {
  color: #828585;
  font-size: 14px;
}
.switch-account {
  margin-top: 16px;
  text-align: center;
}
.switch-account__google-logo {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
  top: -1px;
  margin-right: 8px;
}
.okta-button {
  border: 1px solid #dadce0;
  border-radius: 4px;
  background-color: #fff;
  color: #3c4043;
  font-size: 14px;
  height: 40px;
  padding: 0 12px;
  width: 300px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  transition: background-color .218s, border-color .218s;
}

.okta-button:hover {
  background-color: #f6fafe;
  border-color: #d2e3fc;
}

.okta-button:focus {
  border-color: #4285f4;
  outline: none;
}

.okta-logo {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.blocker-warning {
  background-color: #FB5058;
  font-weight: bold;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  position: fixed;
  width: calc(100% - 60px);
  left: 50%;
  margin-left: calc(-50% + 30px);
  bottom: 30px;
  z-index: 999;
  border-radius: 3px;
  display: none;
}
@media screen and (max-width: 600px) {
  .blocker-warning {
    width: 100%;
    margin-left: -50%;
    bottom: 0;
    border-radius: 0;
    font-size: 16px;
  }
}
.blocker-warning__text {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  padding: 20px;
}
.buttonDiv{
  width: 100%;
}
.buttonDiv > div{
  margin: 0 auto;
}