* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins, sans-serif;
}

.container {
    width: 100%;
    min-height: 100vh;
    background-image: url(./images/bg5.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 10px;


    .calculator {
        width: 100%;
        max-width: 600px;
        margin-left: 30%;
        margin-top: 5%;
        padding: 10px;
        border: 1px solid #f9f7dbb7;
        box-shadow: inset 0 0 10px #a6f391;
        border-radius: 5px;
    }
}

.calculator h1 {
    font-size: 60px;
}

.calculator h1 span {
    color: #96ff65;
}

.input-box {
    margin: 40px 0;
    padding: 35px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
}

.input-box input {
    flex: 1;
    margin-right: 20px;
    padding: 14px 20px;
    border: 0;
    outline: 0;
    font-size: 18px;
    border-radius: 5px;
    position: relative;
}

.input-box button {
    background: #b5ff65;
    border: 0;
    outline: 0;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    color: #333;

}

.input-box button:hover {
    background: #ff0000d6;
    color: rgb(255, 255, 255);

}

.input-box input::-webkit-calendar-picker-indicator {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    position: absolute;
    background-position: calc(100% - 10px);
    background-size: 30px;
    cursor: pointer;
}

#result {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    text-align: center;
}

#result span {
    font-size: 24px;
    color: #fff765;
}

footer {
    border-top: 0.5px solid #f9f7dbb7;
    margin-top: 185px;
    text-align: center;
    padding: 20px;
    font-size: 25px;
    box-shadow: 0 0 20px inset #a6f391;

}