.date-text {
    text-align: center;
    font-size: 26px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 30px;
    line-height: 35px;
}

#custom-date-calculator form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    margin-top: 30px;
}

#custom-date-calculator .form-group {
    flex: 0 0 40%; /* Set each form group to take up 50% of the container width */
    box-sizing: border-box;
    padding: 20px;
    margin-right: 20px;
}

#custom-date-calculator label {
    display: block;
    margin-bottom: 5px;
    color: #d7d7d7;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
}

#custom-date-calculator input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    /* margin-bottom: 10px; */
    background: #248aa4;
    border: none;
    color: #fff;
    font-size: 40px;
    text-align: center;
}

#chosenDate{
	margin-right: 10px;
    background: #f6f6f6 !important;
    border: 1px solid #248aa4 !important;
    font-size: 28px;
}

#calculateDate {
	margin-left: 30px !important;
    background: #248aa4 !important;
    color: #fff !important;
    font-size: 20px;
}

#result-form .form-group {
	background: #248aa4;
}


@media only screen and (max-width: 479px) {#custom-date-calculator .form-group{flex: 0 0 100%; margin-bottom: 20px; margin-right: 0;} #chosenDate{margin-right: 0;} #calculateDate{margin-left: 0 !important;}}


