@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&family=PT+Sans:wght@400;700&display=swap);
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
font-family: 'Open Sans', sans-serif;
font-family: 'PT Sans', sans-serif;
*/
body {
  font-family: "Open Sans", sans-serif;
  padding: 0;
  margin: 0;
  background-color: #f8f8f8;
  color: #302e2f;
}

body.dark-mode {
  background-color: #181818;
  color: #fff;
}

header {
  background-color: #ff153f;
  color: #fff;
}

body.dark-mode header {
  background-color: #212121;
}

header .logo {
  max-width: 200px;
  width: 200px;
  height: auto;
}

header .wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
}
header .wrapper .icons {
  margin: 0;
  margin-left: auto;
  padding: 0;
  display: flex;
}
header .wrapper .icons .darkmode {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .wrapper .icons .darkmode a {
  color: #000;
  padding: 10px;
  font-size: 0.9rem;
  background-color: #fff;
  border-radius: 5px;
  text-decoration: none;
}
header .wrapper .icons .darkmode a .far {
  display: none;
}
header .wrapper .icons .darkmode.is-active a .fas {
  display: none;
}
header .wrapper .icons .darkmode.is-active a .far {
  display: block;
}

.wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
}

h1 {
  font-family: "PT Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

h2 {
  font-family: "PT Sans", sans-serif;
  font-size: 1.7rem;
  margin-bottom: 15px;
  font-weight: 700;
}

p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.text-wrapper {
  margin: 20px 0;
  margin-bottom: 40px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px 0;
}

.form-row .label {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  width: 40%;
  padding: 10px 0;
}

.form-row .label .description {
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
  font-size: 0.9rem;
  margin-top: 10px;
  padding-right: 15px;
  font-weight: 300;
}

.form-row label {
  width: 100%;
  font-size: 1.4rem;
}

.form-row input,
.form-row select {
  width: 60%;
  max-height: 50px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.form-row textarea {
  font-family: "Lato", sans-serif;
  width: 60%;
  padding: 10px;
  min-height: 250px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.form-row button {
  width: 60%;
  margin-left: 40%;
  background-color: #090909;
  color: #f8f8f8;
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  padding: 10px 20px;
  border: 0;
  border-radius: 5px;
}

.validation-error,
.validation-succes {
  border: 5px solid red;
  padding: 30px;
  margin-bottom: 10px;
  background-color: #fff;
  color: #000;
  border-radius: 30px;
  margin: 20px 0;
}

.validation-succes {
  border-color: green;
}

.file-upload-error {
  font-weight: bold;
  color: red;
  margin-left: auto;
}

@media only screen and (max-width: 600px) {
  .form-row .label,
  .form-row button,
  .form-row input,
  .form-row select,
  .form-row textarea {
    width: 100%;
  }
}
.hide {
  display: none;
}

strong {
  font-weight: 700;
}

input[type=submit]:disabled,
button:disabled {
  text-decoration: line-through;
  background-color: #ccc;
  font-style: italic;
}
