*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  'Poppins', sans-serif;
}

.container{
    width: 100%;
    height: 100vh;
    background-color: #4158D0;
    background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #1ad969 100%);
    padding: 10px;
    color: white;
}

.Calculator{
    width: 100%;
    max-width: 600px;
    margin-top: 10%;
    margin-left: 10%;
}

.Calculator h1{
    font-size: 50px;
}

.Calculator span{
    color: rgb(233, 233, 84);
}

.input-box {
    width: 100%;
    max-width: 450px;
    border-radius: 5px;
    height: 70px;
    background-color: rgba(209, 204, 204, 0.603);
    margin-top: 2%;
    margin-left: 10%;

}

.input-box input{
    
    font-family: 'popins';
    font-weight: 700;
    border: none;
    outline: none;
    border-radius: 5px;
   
    height: 40px;
    font-size: 15px;
    margin-left: 15px;
    margin-top: 15px;
        padding: 10px;
    width: 60%;
}

.input-box button{
    font-weight: 600;
    background-color: rgb(233, 233, 84);
    border: none;
    outline: none;
    cursor: pointer;
    height: 40px;
    width: 100px;
    padding: 10px;
    margin-left: 40px;
    border-radius: 5px;
}
.text {
    text-transform:capitalize;
    font-weight: bold;
    margin-top: 5%;
    margin-left: 10%;
}
.text span {

    color: rgb(255, 255, 8);
}

.input-box input::-webkit-calendar-picker-indicator{

   
  
    width: 30px;
    height: 30px;
    background-position: calc(100%, -10px);
    background-size: 30px;
    cursor: pointer;
}

@media  (max-width: 768px) {
    
.Calculator h1{
    font-size: 30px;
}
.Calculator span{
    font-size: 30px;
}

.input-box {
   width:  220px;
}

#date{
    width: 88%;
    text-align: center;
    text-transform: capitalize;

}
.container{
    display: flex;
    flex-direction: column;
}

.input-box button{
    margin-top: 40px;
    transform: translate(-40%);
}

.container .text{
    margin-top: 80px;
    text-wrap: balance;
}

}
