*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#container{
  width: 100vw;
  height: 100vh;
  display: flex;
  background-color: rgba(128, 128, 128, 0.027);
  align-items: center;
  /* border: 1px solid red; */
}
#form_container{
  display: flex;
  padding: 5px 15px ;
  width: 85%;
  margin: 0 auto;
  justify-content: center;
}
#form_container p{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 0.5px;
  font-size: 26px;  
}

#right-side{
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  justify-content: center;
  padding: 15px 20px ;
}
#left-side{
  display: flex;
  flex-direction: column;
  width: 48%;
  height: 100%;
  background: url("../img/PhantomOS_background.png");
  background-position: center;
  background-size: contain;
  justify-content: center;
}
#error_page{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background: url("../img/PhantomOS_background.png");
  background-position: center;
  background-size: contain;
  justify-content: center;
  color: silver;
  text-align: center;
  font-size: 24px;
  text-transform: capitalize;
}
#logo_transparent{
  max-width: 612px;
  width: 85%;
  height:  35vh;
  background: url("../img/logo_tranparent.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}
#register_link{
  text-align: center; 
  font-weight: 500;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  color: #092236;
  margin-bottom: 12px;
}

form{
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
}
.inputs, .select{
  padding: 10px 5px;
  outline: none;
  border: 1px dashed #092236;
  margin: 4px 0;
  border-radius: 4px;
} 
label {
  font-size: 15px;
}
.submit{
  outline: none;
  background: linear-gradient(to left top, #092236, #0f4570);
  font-size: 14px;
  padding:  8px 15px ;
  color: white;  
  border: transparent;
  cursor: pointer;
  /* margin: 10px 0; */
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 2px;
  margin: 10px 0;
}
#captcha_container{
  width: 100%;
  height: 130px;
  margin: 4px 0;
}
.row p{
  font-size: 25px;
}
#logo{
  width:  50px;
  height: 50px;
  background: url(../img/logo.jpg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.row{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.responseModal{
  position: absolute;
  top: 0;
  display: flex;
  width: 440px;
  padding: 10px;
  margin-bottom: 15px;
  margin: 0 auto;
  left: 50%;
  right: 50%;
  transform: translate(-50%,0%);
  border-radius: 4px;
}
.errorModal{
  color: #571515;
  background-color: #f8b3b3;
  border: 1px solid #8a2020;

}
.successModal{
  color: #175715;
  background-color: #bbf8b3;
  border: 1px solid #2c8a20;
}
  #questionsForm{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
@media only screen and (max-width:550px){
  #container{
    flex-direction: column;
  }
  #left-side{
    display: none;
  }
  #right-side{
    width: 100%;
    background: url("../img/PhantomOS_background.png");
    background-position: center;
    background-size: contain;
  }
  #form_container p{
    font-size: 32px;
    color: white;
  }
  #logo_transparent{
    max-width: 612px;
    width: 45%;
    height:  15vh;
    background: url("../img/logo_tranparent.png");
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0 auto;

  }
  .inputs, .select{
    padding: 10px 5px;
    outline: none;
    border: 1px solid white;
    margin: 4px 0;
    border-radius: 4px;
    background-color: transparent;
    color: white;
  } 
  #attempts{
    color: white;
  }
    #questionsForm{
      color: white;
  }
}

@media only screen and (max-width:450px){
  #form_container, .responseModal{
    width: 95%;
  }
}