*:where(:not(iframe,
canvas,
img,
svg,
video):not(svg *,
symbol *)) {
  all: unset;
  display: revert;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a {
  cursor: revert;
}
ol,
ul,
menu {
  list-style: none;
}
img {
  max-width: 100%;
}
table {
  border-collapse: collapse;
}
textarea {
  white-space: revert;
}
:where([hidden]) {
  display: none;
}
:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}
:where([draggable="true"]) {
  -webkit-user-drag: element;
}
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../font/roboto-v32-latin-300.woff2') format('woff2'), url('../font/roboto-v32-latin-300.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../font/roboto-v32-latin-regular.woff2') format('woff2'), url('../font/roboto-v32-latin-regular.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../font/roboto-v32-latin-500.woff2') format('woff2'), url('../font/roboto-v32-latin-500.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../font/roboto-v32-latin-700.woff2') format('woff2'), url('../font/roboto-v32-latin-700.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('../font/material-icons-v142-latin-regular.woff2') format('woff2');
}
.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;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}
html {
  font-size: 16px;
}
body {
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}
p {
  line-height: 1.4em;
}
body {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  padding: 0 5vw;
  flex-direction: column;
  background: #f5f5f5;
  overflow: hidden;
  gap: 0;
}
@media screen and (min-width: 750px) {
  main {
    width: 460px;
    margin: 0 auto;
  }
}
.logo {
  width: 100%;
  max-width: 150px;
  margin: 0 auto 30px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .logo {
    max-width: 200px;
  }
}
.logo svg {
  overflow: visible;
  display: block;
  width: 100%;
  height: 100%;
}
.input {
  margin-bottom: 10px;
}
.input:last-child {
  margin: 0;
}
.login-intro {
  margin-bottom: 30px;
  text-align: center;
  opacity: .6;
}
input,
select,
textarea {
  width: 100%;
}
input[type='text'],
input[type='password'] {
  height: 50px;
  line-height: 50px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #333;
  padding: 0 1em;
  border-radius: 10px;
  transition: 300ms;
}
input[type='text']:focus,
input[type='password']:focus {
  box-shadow: 0 0 5px rgba(0,0,0,0.1) inset;
}
.login-inputs {
  margin-bottom: 30px;
}
.btn {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: #EA6C00;
  color: #FFF;
  font-weight: 500;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 20px 20px rgba(234,108,0,0.2);
}
.message {
  padding: 20px 40px;
  background: #199E5F;
  text-align: center;
  color: #FFF;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 10px;
  border-radius: 10px;
  position: relative;
}
.message--error {
  background: #D43B02;
}
.message::before,
.message::after {
  content: '';
  width: 15px;
  height: 1px;
  position: absolute;
  right: 10px;
  top: 15px;
  background: #FFF;
}
.message::before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.message::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}