:root {
  --white: rgb(255, 255, 255);
  --bg: rgb(13, 27, 42);
  --bg-secondary: rgb(33, 47, 62);
  --bg-tertiary: rgb(53, 67, 82);
  --fg: #ffffff;
  --bg-light: #ffffff;
  --fg-dark: #212529;
  --yellow: rgb(255, 204, 102);
  --pink: rgb(255, 100, 150);
  --red: rgb(255, 56, 20);
}

@font-face {
  font-family: "Raleway";
  src: url("/assets/fonts/Raleway/Raleway-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "DrukWideSuper";
  src: url("/assets/fonts/DrukWideSuper/DrukWideSuper.woff2") format("woff2");
}

body {
  font-family: "Raleway";
  background: var(--bg);
  color: var(--fg);
  padding: 2rem 1rem;
}

button {
  cursor: pointer;
  transition: background 300ms ease-out;
}

h1 {
  font-weight: 400;
}

a {
  text-decoration: none;
}

.logo {
  font-family: "DrukWideSuper";
  color: var(--fg);
  font-size: 1.5rem;
  margin: 1rem 0;
  display: inline-block;
}

.logo span {
  color: var(--yellow);
  display: inline-block;
}

.container {
  max-width: 767px;
  margin: 0 auto;
}

.form-container {
  padding: 1rem;
  background: var(--bg-light);
  color: var(--fg-dark);
}

.input-group {
  margin: 2rem 0;
  position: relative;
}

.input-field {
  display: block;
  font-size: 1rem;
  padding: 1rem 0;
  background: none;
  border: none;
  border-bottom: 0.1rem solid var(--fg-dark);
  width: 100%;
  transition: 500ms ease-out;
}

.input-field:focus {
  border-bottom: 0.1rem solid var(--pink);
  outline: 0;
}

label {
  margin: 0.5rem 0;
  display: block;
}

.submit-btn {
  width: 100%;
  border: 0.5rem solid transparent;
  background: var(--bg-secondary);
  color: var(--white);
  height: 5rem;
  position: relative;
}

.submit-btn:hover {
  background: var(--bg-tertiary);
}

.msg {
  font-weight: bold;
  display: block;
  padding: 1rem 0;
  color: var(--pink);
}
