@font-face {
  font-family: 'Outfit';
  src: url('../Static/fonts/Outfit/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../Static/fonts/Outfit/Outfit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../Static/fonts/Outfit/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

html,
body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #333;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  background: rgb(95, 206, 254);
  background: linear-gradient(
    0deg,
    rgba(95, 206, 254, 1) 0%,
    rgba(36, 163, 255, 1) 50%,
    rgba(75, 60, 255, 1) 100%
  );
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px 33px;
}

main {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex: 1;
  width: 100%;
  padding-bottom: 33px;
}

aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 850px;
  padding: 33px;
  color: #ffffff;
  flex-shrink: 0;
}

footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f9fc;
  padding: 33px;
  color: #000000;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

input[type='text'],
input[type='password'] {
  padding: 13px 16px;
  border: 1px solid #ced4dd;
  border-radius: 4px;
}

.hidden {
  display: none;
}

@media screen and (max-width: 480px) {
  header {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(100px);
  }

  main {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-start;
  }

  aside {
    width: 100%;
    padding: 33px 16px 44px 16px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
