@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v32-latin-300.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v32-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v32-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v32-latin-700.woff2') format('woff2');
}


html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    height: 100%;
    width: 100%;
}

body {
    color: #000;
    font-size: 100%;
    line-height: 1.3em;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-width: 300px;
    background: #d0d0d0;
}

div {
    position: relative;
}

* {
  box-sizing: border-box;
}

#wrapper {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.row {
    --bs-gutter-x: 0.5rem;
}

:root {
    --dark-grey: #414141;
    --light-grey: #efefef;
    --icons: #4c4c4c;
    --light-grey-2: #a8a8a8;
    --input-border: #dfdfdf;
    --light-bluegrey: #f9f9f9;
    --input-label: #7b7b7b;
    --grey: #cecece;
    --red: #df0b04;
    --red-hover: #e0524d;
    --highlight: #c8e0e3;
    --padding: 30px;
}

p {
    font-size: 0.875em;
    margin-bottom: 0.4em;
    color: #000;
}

h1 {
    font-size: clamp(1rem, 0.75rem + 0.8vi, 1.25rem);
    margin-bottom: 0.25em;
    line-height: 1.3em;
    display: block;
}

strong, b {
    font-weight: bold
}

em, i {
    font-style: italic
}

a {
    color: inherit;
}

#wrapper {
    overflow: hidden;
}

#stage {
  padding: 10px;
  height: 100dvh;
  min-height: 600px;
}

#content {
  background: var(--light-grey);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}


#sidebar {
  background: var(--dark-grey);
  width: 60px;
  padding: 9px;
}

#sidebar_logo {
  padding: 3px;
  background: #fff;
  border-radius: 3px;
  display: inline-block;
}

#form {
  background: var(--light-grey);
  padding: var(--padding);
  flex-grow: 1;
}

#form-inner {
  background: var(--light-bluegrey);
  padding: var(--padding);
  border-radius: 7px;
  overflow: hidden;
  margin-top: 20px;
}

.button {
  background: var(--red);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  height: 50px;
  padding: 0 70px;
  line-height: 50px;
  border-radius: 30px;
  font-size: 1em;
  text-transform: uppercase;
}

.submit-button {
    margin-top: 3em;
}

input[type="file"] {
    background: #fff;
    border: 1px solid var(--input-border);
    padding: 8px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

@media (hover: hover) {
.button:hover {
  background: var(--red-hover);
}
}

.button-wrapper {
    text-align: right;
}

.control-label {
  font-size: .875em;
  color: var(--input-label);
  display: block;
  margin: 4px 0;
}

.form-control {
  background: #fff;
  color: #000;
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  display: block;
  font-size: .875em;
  margin-bottom: 12px;
  border: 1px solid var(--input-border);
  font-family: 'Roboto', sans-serif;
}

#footer {
  width: 100%;
  max-width: 800px;
  margin: 10px auto;
  text-align: center;
}

#footer ul li {
    display: inline-block;
    margin: 0 8px;
}

#footer ul li a {
font-size: 0.875em;
line-height: 1.3em;
color: #9e9e9e;
text-decoration: none;
}


@media screen and (max-width: 767px) {

:root {
    --padding:15px;
}

.button-wrapper {
  text-align: left;
}

#sidebar {
    width: 100%;
}

.button {
height: auto;
min-height: 50px;
padding: 0 28px;
display: block;
width: 100%;
}


}

