* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #f6f7fb;
}

main {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin-bottom: 100px;
}

body {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

h1 {
  color: #2f3243;
  font-weight: 600;
  font-size: 1em;
  margin: 4px 0;
}

header {
  min-height: 95px; /** 45px image, 25px vertical padding **/
  background-color: #2f3243;
  padding: 25px 40px;
  display: flex;
  align-items: center;
}

.content {
  flex-direction: column;
  margin: auto;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
  padding: 16px 23px;
  text-align: center;
  width: 600px;
}

.card > p {
  font-weight: 400;
  margin: 20px 37px;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 600px) {
  main {
    height: auto;
    padding-top: 20px;
  }

  #logo {
    max-width: 100%;
    max-height: 40px;
  }

  .card {
    width: 90%;
  }

  .card > p {
    font-weight: 400;
    margin: 20px 0;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

.card.row {
  display: flex;
  flex-direction: row;
}

#logo {
  display: block;
  max-height: 45px;
  width: auto;
}

.button {
  color: #fff;
  background-color: #686c82;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 0.875rem;
  margin-top: 30px;
  padding: 8px 24px;
  text-decoration: none;
}

.button.secondary {
  color: #2f3243;
  background-color: #fff;
  border: 1px solid #bbbecf;
}

.reference {
  flex: 1;
  color: #949494;
  font-size: 0.75rem;
  text-align: left;
}

.reference > .label {
  margin-bottom: 10px;
}

.icon {
  width: 28px;
  height: 28px;
  float: left;
}

.error-icon {
  background-image: url("/web/images/error.svg");
}

.success-icon {
  background-image: url("/web/images/success.svg");
}

.loader {
  border: 3px solid #aaa;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
