body {
    background-color: #FFA500;
     font-family: "Poppins", sans-serif;
     display: flex;
     flex-direction: column;
     margin-top: 150px;
     align-items: center;
}
@media screen and  (max-width:600px) {
   body {
    padding: 0px 20px;
    display: flex;
    justify-content: center;
   }

}
.mainContainer {
    width: 500px;
    /* height: 100vh; */
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
@media screen and  (max-width:600px) {
    .mainContainer {
        width: 380px;
    }
}

.DateBox {
    background-color: black;
    width: 500px;
    padding-bottom: 20px;
    border-radius: 2px ;
    border-radius: 10px;
    padding-top: 15px;
}
.DateBox label {
    font-size: 18px;
    color: white;
    margin-left: 28px;
}

.DateBox p {
    color: red;
    text-align: center;
    font-size: 18px;
}
@media screen and  (max-width:600px) {
 .DateBox {
    width: 360px;
    padding: 20px 0px 5px 20px;
 }  
 .DateBox label {
    margin-left: 0px;
    font-size: 20px;
 }
 .DateBox p {
    font-size: 20px;
    text-align: left;
 }
}
.inputBox {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.inputBox input {
    height: 40px;
    width: 300px;
    outline: none;
    font-size: 18px;
    padding: 0px 10px;
    margin-top: 5px;
    border-radius: 7px;
    border: none;
    position: relative;
}
.inputBox input::-webkit-calendar-picker-indicator {
    /* background-size: 25px; */
    position: absolute;
    right: 10px;
    width: 25px;
    height: 25px;
}

.inputBox button {
    width: 120px;
    height: 40px;
    background-color: white;
    color: black;
    /* font-weight:700; */
    font-size: 17px;
    border-radius: 7px;
    border: none
}
button:hover {
    background-color:#FFA500;
    color: white;
}
@media screen and  (max-width:600px) {
  .inputBox {
    display: block;
  } 
  .inputBox input {
    margin-bottom: 10px;
    width: 320px;
    height: 50px;
    font-size: 21px;
  }
  .inputBox button {
    width: 150px;
    height: 50px;
    font-size: 20px;
    font-weight: 500;
  }
}
.ResultBox {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.ResultBox div {
    width: 100px;
    height: 100px;
    background: black;
    color: white;
}
.resData {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 0px;
    border-radius: 10px;
}
.resData h1{
    font-size: 35px;
}
