body{
  margin:0;
  background-color: #000000;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("https://s3.amazonaws.com/appforest_uf/f1620660450661x792272160430384100/SpaceGrotesk-Regular.otf");
  font-weight: 400;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url("https://s3.amazonaws.com/appforest_uf/f1620660301503x520860902909725500/SpaceGrotesk-Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url("https://s3.amazonaws.com/appforest_uf/f1620660531502x231995323315286500/SpaceGrotesk-SemiBold.otf");
  font-weight: 600;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("https://s3.amazonaws.com/appforest_uf/f1620658846497x586053481326257400/SpaceGrotesk-Bold.otf");
  font-weight: 700;
}
@font-face {
  font-family: 'IntegralCF Bold';
  font-style: normal;
  font-weight: normal;
  src: url('../IntegralCF-Bold.woff') format('woff');
}

.cont{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: url('../img/bck.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.logo{
  width: 190px;
  height: 117px;
  background: url('../img/logo.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 70px;
}
.pinForm{
  display: flex;
  flex-direction: column;
}
label{
  font-family: "Space Grotesk";
  font-weight: 400;
  color: #00CAB3;
  font-size: 12px;
  margin-bottom: 10px;
}
input[type="text"]{
  width: 400px;
  height: 50px;
  box-sizing: border-box;
  padding-left: 16px;
  font-size: 18px;
  font-family: "Space Grotesk";
  font-weight: 400;
  background: rgba(255, 0, 0, 0);
  border: 1px solid white;
  border-radius: 5px;
  color: white;
}
input[type="text"]:nth-child(2){
  margin-bottom: 20px;
}
input[type="text"]:focus{
  border: 1px solid #00CAB3;
  outline: none;
}
.submitButton{
  width: 400px;
  height: 60px;
  color: white;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  font-family: 'IntegralCF Bold';
  border: none;
  background-color: #00CAB3;
  margin-top: 60px;
}
.submitButton:hover{
  background-color: #00BAA5;
}

@media (max-width: 991.98px) {
  .logo{
    width: 100px;
    height: 90px;
    margin-bottom: 30px;
  }
  input[type="text"]{
    width: 90vw;
  }
  .submitButton{
    width: 90vw;
    margin-top: 40px;
  }
}
