body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #4a90e2, #eef2f3);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    flex-direction: column;
    margin: 1rem;
}

* {
    font-family: "Poppins";
}

.container {
    display: flex;
    background-color: #eef2f378;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
}

.left {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    font-family: "Poppins";
}

.left label {
    display: block;
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
}

.left input[type="date"] {
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    margin-bottom: 20px;
    background-color: #4a91e200;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
    outline: none;
}


.result {
    font-size: 18px;
    color: #444;
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
}

.right {
    flex: 1;
    display: flex;
    justify-content: center;
    /* background: url("./assets/back-right-img.jpg") no-repeat center center/cover; */
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        max-width: 100%;
        height: auto;
    }

    .right {
        height: 200px;
        display: none;
    }
}