body {
    font-family: "Poppins";
    background-color: hsl(0, 0%, 86%);
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%;
    height: 80%;
    background-color: white;
    border-radius: 30px 30px 120px 30px;
    margin: 20px auto;
    padding: 50px;
}
.date {
    display: flex;
    justify-content: left;
    width: 90%;
    height: 30%;
}
.date label {
    width: 30px;
    height: 40px;
    text-align: right;
    color: hsl(0, 1%, 44%);
    font-weight: 600;
}
.date input {
    width: 15%;
    height: 50%;
    padding: 10px 30px;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 10px;
    margin-top: 40px;
    position: relative;
    left: -30px;
    font-size: 26px;
    font-weight: 800;
}
.date input:active {
    border: 1px solid hsl(259, 100%, 65%);
    outline: none;
}
.arrowLine{
    display: inline-flex;
    width: 100%;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
.line{
    display: inline;
    border-bottom: 1px solid #ccc;
    width: 97%;
    position: relative;
}
.arrowLine .image{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(259, 100%, 65%);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
}
.content{
    width: 100%;
    height: 65%;
    display: flex;
    justify-content: left;
    flex-direction: column;
    font-size: 70px;
    font-weight: 700;
}
.content span{
    color: hsl(259, 100%, 65%);
}
@media only screen and (max-width: 950px) {
    .box{
        margin-top: 170px;
        height: auto;
        padding: 45px;
    }
    .date input{
        width: 35px;
        left: -40px;
        padding: 10px 20px;
    }
    .date{
        margin-bottom: 20px;
    }
    .content{
        font-size: 50px;
    }
}
@media only screen and (max-width: 575px) {
    .box{
        margin-top: 50px;
        width: 75%;
        padding: 45px;
        height: 50%;
    }
    .date{
        width: 100%;
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .date label{
        font-weight: 500;
    }
    .date input{
        padding: 10px 20px;
        width: 45px;
        height: 45%;
        font-size: 20px;
        font-weight: 600;
        left: -40px;
    }
    .arrowLine{
        margin-top: 55px;
    }
    .arrowLine .line{
        width: 100%;
    }
    .arrowLine .image {
        z-index: 99;
        position: absolute;
        left: 175px;
    }
    .content{
        margin-top: 45px;
        font-size: 40px;
    }
}
@media only screen and (max-width: 375px){
    .box{
        height: 70%;
    }
    .date input{
        width: 35px;
    }
    .arrowLine .image{
        left: 160px;
    }
}