@font-face {
  font-family: rajdhani;
  src: url(/fonts/Rajdhani-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: rajdhani;
  src: url(/fonts/Rajdhani-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: roboto;
  src: url(/fonts/Roboto-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: roboto;
  src: url(/fonts/Roboto-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: sacramento;
  src: url(/fonts/Sacramento-Regular.ttf);
  font-weight: 400;
}

body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background: #EEE;
  font-family: "roboto";
}

#wrapper {
  padding: 8px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ident {
  color: #333;
  font-family: 'Courier New', Courier, monospace;
  padding: 8px;
}

#invite {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;

  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.30);
  background: #FADB6F;

  color: #000;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h1 {
  font-family: "sacramento";
  color: #000;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

p {
  margin: 0;
  align-self: stretch;
  color: #000;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
p.error {
  padding: 8px 0;
  border-radius: 8px;
  color: #F00;
  background-color: rgba(255, 0, 0, 0.25);
}

#container {
  display: flex;
  flex-flow: column nowrap;
  width: 360px;
  max-width: 100%;
  box-sizing: border-box;
  padding: 24px;
  align-items: center;
  gap: 16px;

  border-radius: 32px;
  background: #FFF;
  box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.10);
}

input {
  display: flex;
  padding: 8px 12px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  font-size: 16px;

  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.50);
  background: #FFF;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
  outline: none;
}

input:focus {
  border: 1px solid #228B22;
  box-shadow: 0px 1px 4px 0px rgba(34, 139, 34, 0.25);
}

button {
  display: flex;
  padding: 8px 12px;
  align-items: flex-start;
  gap: 10px;

  border-radius: 8px;
  border: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.25);
  background: #228B22;

  color: #FFF;
  font-family: "roboto", Courier, monospace;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  cursor: pointer;
}

button:disabled {
  border-bottom: 2px solid rgba(0, 0, 0, 0.10);
  background: rgba(0, 0, 0, 0.25);

  cursor: default;
}
