@font-face {
  font-family: 'roboto-regular';
  src: url('/fonts/roboto/Roboto-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'roboto-light';
  src: url('/fonts/roboto/Roboto-Light.ttf') format('truetype');
  font-display: swap;
}

:root {
  /* Typografia */
  --text-roboto-regular: 'roboto-regular', sans-serif;
  --text-roboto-light: 'roboto-light', sans-serif;
}

body {
  font-family: var(--text-roboto-regular);
}

.main__container {
  min-height: 100vh;
}

.auth__container {
  height: max-content;
  background-image: linear-gradient(to bottom right, #006858 20%, #08cbb8 100%);
  min-height: 100vh;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

p {
  color: #333;
  line-height: 22px;
}

input {
  border: 1px solid #b2b2b2;
  font-family: var(--text-roboto-light);
  font-size: 14px;
  outline: none;
  height: 42px;
  padding: 10px;
  margin-bottom: 10px;
  width: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  color: #000;
  font-weight: 400;
}

label {
  color: #999;
  font-size: 12px;
  text-align: left;
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}