:root {
  --brandColor: hsl(166, 67%, 51%);
  --background: rgb(247, 247, 247);
  --textDark: hsla(0, 0%, 0%, 0.66);
  --textLight: hsla(0, 0%, 0%, 0.66);
}

html,
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--background);
  height: 100vh;
  color: var(--textDark);
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  /* For IE6-8 */
  src: url(/assets/material-icons/iconfont/MaterialIcons-Regular.eot);
  src: local("Material Icons"), local("MaterialIcons-Regular"),
    url(/assets/material-icons/iconfont/MaterialIcons-Regular.woff2) format("woff2"),
    url(/assets/material-icons/iconfont/MaterialIcons-Regular.woff) format("woff"),
    url(/assets/material-icons/iconfont/MaterialIcons-Regular.ttf) format("truetype");
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
}

.dropzone {
  background-color: var(--background);
  border: 1px dashed var(--brandColor);
  border-radius: 5px;
  color: var(--brandColor);
  cursor: pointer;
  max-width: 300px;
  padding: 5px;
  text-align: center;
}

.validation {
  color: red;
  margin-top: 5px;
}

.register {
  margin-top: 3rem;
  background: white;
  border-radius: 10px;
}

.left,
.right {
  padding: 72px;
}

.left {
    border-right: 5px solid var(--background);
    min-width: 470px;
}

.right .title {
  font-weight: 800;
  letter-spacing: -1px;
}

input:focus {
  border-color: var(--brandColor) !important;
  box-shadow: 0 0 0 1px var(--brandColor) !important;
}

p {
    color: var(--textLight);
}

.disabled {
    color: #888;
}
