@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

html {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #004969;
  font-family: "Saira", sans-serif;
}

body {
  margin-top: 5%;
  width: 50%;
  background-color: #f9f9fb;
  border-radius: 1rem;
  font-size: 1.3rem;
}

main {
  padding: 2rem;
}

header {
  text-align: center;
}

img.logo {
  height: 100%;
  width: 80%;
}

h1.title {
  margin-top: 0;
  font-size: 1.7rem;
}

h2.completed {
  margin-top: 0;
  padding: 1rem;
  font-size: 1.4rem;
  color: #f9f9fb;
  background-color: #2ea44f;
  border-radius: 0.3rem;
  text-align: center;
}

span.check-mark {
  color: #f9f9fb;
}

span.access-token,
form input.access-token {
  border: 1px solid #e5e5e5;
  border-radius: 0.3rem;
  padding: .4rem;
  font-family: monospace;
}

form input.access-token[type="text"] {
  font-size: 1.1rem;
  font-family: monospace;
}

.button {
  padding: .5rem 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  color: white;
  font-size: 1.1rem;
}

.button.ok {
  background-color: #2ea44f;
}

.button.ok:hover {
  background-color: #2c974b;
}

.button.cancel {
  background-color: #cd5c5c;
}

.button.cancel:hover {
  background-color: #c04743;
}

.errors {
  padding: 1rem;
  border-radius: 5px;
  color: white;
  background-color: #cd5c5c;
}

.buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
}

h1.p-404, h1.p-405, h1.p-500 {
  text-align: center;
  color: #c04743;
}
