@import '../Fonts/fonts.css';

body {
  margin: 0 auto;
  font-family: SemiBoldFont, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #152040;
  max-width: 1920px;
  min-width: 280px;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

h1 {
  font-size: 3em;
  color: #ffdc21;
  line-height: 120%;
}

h2 {
  font-size: 2em;
  color: #ffdc21;
}

h3 {
  font-size: 1.6em;
  color: #fff;
}

.black_text {
  color: #000;
}

.white_text {
  color: #fff;
}

.bold_text {
  font-family: BoldFont;
}

form {
  font-family: RegularFont;
  background-color: #fff;
  padding: 1em;
}

form input {
  border: 1px solid #a6a6a6;
  padding: 0.5em;
}

label {
  font-family: SemiBoldFont;
}

.error_message {
  color: #d70000;
}

.success_message {
  color: #00a708;
}

.form_button {
  background-color: #626262;
  color: #fff;
  border: none;
}

.form_button:hover {
  background-color: #a6a6a6;
}

.light_button {
  background-color: #fff;
  color: #000;
  border: #000 solid 1px;
}

.light_button:hover {
  background-color: #a6a6a6;
}

.anchor {
  font-family: RegularFont;
  font-size: 90%;
  text-decoration: none;
  color: #000;
  padding: 0.5em 1.5em;
  background-color: #dff6fc;
  border-radius: 10em;
}

.anchor:hover {
  background-color: #92c5ff;
  color: #000;
}

.go_back {
  display: block;
  margin: 0 0 0.5em 1em;
  color: #fff;
}

.go_back:hover {
  color: #fff;
}

.center_text {
  text-align: center;
}