* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

:root {
  font-size: 62.5%;

  /* colors */
  --bg: #030711;
  --bg-muted: #0f1629;
  --bg-muted-forground: #7f8ea3;
  --bg-foreground: #e1e7ef;

  --text: #fff;

  --border: #1d283a;
}

body {
  line-height: 1;
  font-size: 1.6rem;
  font-family: 'Inter', sans-serif;

  background: var(--bg);
  color: var(--text);

  padding: 1rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

header {
  margin-top: 5rem;
}

h1 {
  font-size: 4.8rem;
}

hr {
  margin-block: 2rem;

  border-color: var(--bg-muted-forground);
}

/* FORM */

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input {
  padding: 0.8rem 1.2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--bg-muted-forground);
  background: none;

  color: var(--bg-foreground);
}

form button {
  padding: 1rem;
  border: none;
  border-radius: 0.6rem;
  background: var(--border);
  color: var(--bg-foreground);
  cursor: pointer;
}

/* SECTION */
section {
  display: grid;
  gap: 1rem;

  width: 100%;
  padding-inline: 1rem;
}

p {
  padding: 5px 30px;

  border: 2px solid var(--border);
  border-radius: 5px;
  max-width: fit-content;
}

form p {
  border: none;
}

p:hover {
  border-color: var(--bg-muted-forground);
}

span {
  color: var(--bg-muted-forground);
  font-weight: bold;
}
