@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    color: white;
    text-shadow:1px 1px black;
    font-family: 'Josefin Sans', sans-serif;
}
body{
    padding: 15px;
}
.body{
    display: flex;
    background-color: #737373;
    padding: 15px;
    border-radius: 20px;
    width: 100%;
}
.div-1{
    width: 50%;
}
.div-logo{
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
}
img{
    height: auto;
    width: 400px;
}
#head{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.label{
    padding: 20px;
    font-size: 22px;
}
.form-field {
	border: none;
	border-bottom: 1px solid;
	width: 100%;
	height: 2rem;
	font-size: 22px;
    color: black;
	padding-left: 0.875rem;
	line-height: 147.6%;
	padding-top: 0.825rem;
	padding-bottom: 0.5rem;
    border-radius: 6px;
    text-shadow: none ;
    box-shadow:1px 2px 6px black;
    
  }
  .input-container{
      border-bottom: 2px solid black;
      padding-bottom: 25px;
  }
  #range-container{
      padding-top: 50px;
  }
  #range{
    border-bottom: none;
    width: 82%;
    height: unset;
    border-radius: none;
    box-shadow:none;
  }
  #range-value{
    padding-left: 20px;

  }
  .per{
      font-size: 22px;
  }
#roi-container{
    width: 80%;
}  
#btn{
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 22px;
    width: 15%;
    background-color: rgb(7, 167, 79);
    border: none;
    border-radius:10px;
}
#invested-amount , #returns{
    font-size: 22px;
    background-color: rgb(236, 236, 236);
    margin-top: 10px;
    padding: 10px;
    text-shadow: none ;
    color: black;
}
#applause{
    text-align: center;
    padding-top: 20px;
    font-size: 22px;
}
@media only screen and (max-width:900px){
    .body{
        padding: 30px;
        flex-direction: column;
    }
    .div-logo{
        width: 100%;
        text-align: center;
    }
}
@media only screen and (max-width:500px){
    body{
        padding: 8px;
    }
    .label{
        font-size: 18px;
    }
    .form-field {
        font-size: 18px;
    }
    .per{
        font-size: 18px;
    }
    #btn{
        font-size: 18px;
    }
    #invested-amount , #returns{
        font-size: 18px;
    }
    #applause{
        font-size: 18px;
    }
    img{
        width: 331px;
    }
    #range{
        width: 73%;
      }
      #btn{
        font-size: 19px;
        width: 18%;

    }
}