*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input[type='text'], input[type='password'] {
  border: none;
  border-radius: 2px;
  background-color: #EEE;
  padding: 8px;
  height: 38px;
  outline: none;
  width: 100%;
}

input[type='password'] {
  margin-top: 16px;
}

button[type='submit'], input[type='submit'] {
  border: none;
  padding: 8px 32px;
  background-color: #9c1a1c;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: color 180ms ease;
}

input[type='submit']:hover {
  color: rgba(255, 255, 255, 0.88);
}

.auth {
  width: 100vw;
  height: 100vh;
  background-color: #9C1A1C;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth__wrapper {
  width: 360px;
  background-color: #FAFAFA;
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.auth__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.auth__wrapper p {
  font-size: 16px;
  color: rgba(0, 0, 0, .87);
  padding-top: 16px;
}

.auth__footer label {
  font-size: 14px;
}

.toolbar {
  height: 56px;
  background-color: #a41008;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}


.toolbar__wrapper {
  width: 100%;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.toolbar__wrapper i {
  color: rgba(255, 255, 255, .87);
}

.toolbar__wrapper img {
  max-height: 40%;
}

.dashboard {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
}

.dashboard__card {
  width: 300px;
  margin: 16px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.dashboard__card-title {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background-color: #EEE;
  display: block;
  line-height: 48px;
  font-family: 'Roboto', sans-serif;
  /*text-transform: uppercase;*/
  color: rgba(0, 0, 0, .87);
  font-size: 16px;
}

.dashboard__content {
  padding: 16px;
}

.dashboard__content input[type='file'] {
  display: none;
}

.dashboard__file {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
}

.dashboard__file i {
  font-size: 90px;
  color: #a41008;
}

.dashboard__wrapper-button button {
  width: 100%;
}

.dashboard__message {
  padding-bottom: 16px;
  font-size: 14px;
  color: rgba(0, 0, 0, .64);
  font-family: 'Roboto', sans-serif;
}
