 @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {
   height: 100vh;
   background-color: #121826;
   font-family: "Inter", sans-serif;

 }

 .author-info {
   font-size: 14px;
   text-align: center;
   margin-top: 16px;
   color: rgb(55, 65, 81);
 }

 .author-info a {
   text-decoration: none;
 }

 input {
   display: block;
   height: 40px;
   width: 100%;
   border-radius: 10px;
   margin-bottom: 20px;
   margin-top: 5px;
   background-color: #212936;
   border: solid 1px #4D5562;
   padding-left: 15px;
   color: #E5E7EB;

 }

 .box {
   height: 300px;
   width: 400px;
   border-radius: 10px;
   background-color: #212936;
 }

 .container-3 {
   padding: 20px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   display: none;

 }

 .container-1 {
   padding: 20px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   
 }

 .container-2 {
   padding: 20px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   display: none;
 }

 main {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   height: 100vh;
  background-image: url("resources/blur-radial.png");
  background-position: 370px 20px ;
  background-repeat: no-repeat;
  
 }

 legend {
   font-size: 1.25rem;
   color: #E5E7EB;
 }

 input::placeholder {
   color: #E5E7EB;
 }

 label {
   color: #A1A1A9;
   font-size: 0.75rem;
 }

 button {
   height: 35px;
   width: 100px;
   border-radius: 35px;
   background-color: #845EEE;
   border: none;
   color: #E5E7EB;
   font-weight: 500;
   margin: 0 auto;
   box-sizing: border-box;
 }

 #steps {

   width: 100px;
   text-align: center;
   color: #A1A1A9;
   font-size: 0.75rem;

 }


 input[type="radio"] {
   display: inline;
   height: 15px;
 }

 .step-holder {
   margin: 10px auto;
   display: flex;
   flex-direction: row;
   width: 100px;
   justify-content: center;
   height: 30px;
 }
 .bottom{
  display: flex;
  flex-direction: row;
  align-items: center;

 }

 .ul {
   list-style: none;
   padding: 0;
   margin: 0;
   color: #E5E7EB;
   width: 100%;
   font-size: 0.875rem;


 }

 .li {
   width: 100%;
   height: 40px;
   margin-bottom: 10px;
   background-color: #394150;
   border-radius: 10px;
   padding-left: 15px;
   display: flex;
   flex-direction: row;
   align-items: center;

   cursor: pointer;
 }
 .tag, .topics{
  color:#A1A1A9;
  
 }
 .tag, #fin-name, #fin-email{
  display: inline;
 }
 h1,#fin-name, #fin-email{
  color: #E5E7EB;
 }
 .selected-topics{
  margin-left: 20px;
  color: #E5E7EB;
  font-size: 0.875rem;
  margin-top: 5px;
 }
 h1{
  font-size: 1.25rem;
 }
 input[type="radio"]:checked{
  accent-color: #5425AF;
 }
@media screen and (max-width: 420px) {

  .box {
    width: 90%;
  }
}