@font-face {
  font-family: "Pinar";
  src: url("Pinar-VF.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Pinar", Tahoma, Arial, sans-serif;
}
.container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.left {
  width: 50%;
  height: 100vh;
  background: #2e3192;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Logo style */
.logo {
  width: 350px;
  height: auto;
  display: block;
}
.right {
  width: 50%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  align-items: center;
  justify-content: center;
}

/* Pinar font weight utilities */
.pinar-thin {
  font-family: "Pinar", Tahoma, Arial, sans-serif;
  font-weight: 100;
}
.pinar-light {
  font-family: "Pinar", Tahoma, Arial, sans-serif;
  font-weight: 300;
}
.pinar-regular {
  font-family: "Pinar", Tahoma, Arial, sans-serif;
  font-weight: 400;
}
.pinar-medium {
  font-family: "Pinar", Tahoma, Arial, sans-serif;
  font-weight: 500;
}
.pinar-bold {
  font-family: "Pinar", Tahoma, Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
}
.pinar-extrabold {
  font-family: "Pinar", Tahoma, Arial, sans-serif;
  font-weight: 800;
}
.pinar-black {
  font-family: "Pinar", Tahoma, Arial, sans-serif;
  font-weight: 900;
}
