/* * {
    font-family: 'Poppins', sans-serif;
} */

/* body {
    background-color: #111827;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #f66962;
    padding: 10px;
    margin: 150px 400px;
    border-radius: 20px;
}

.form-input {
    border: 2px solid #f66962;
    width: 14rem;
    height: 2rem;
    background: white;
    border-radius: 5px;
    margin: 5px 0;
}

.input {
    height: 100%;
    width: 80%;
    border: none;
    outline: none;
    padding: 0 10px;
}

.input-icon {
    width: 15%;
    height: 100%;
    border: none;
    cursor: pointer;
}

.calculateBtn {
    height: 3rem;
    width: 8rem;
    border: 2px solid #f66962;
    background: #F1FAEE;
    color: rgb(185, 56, 56);
    font-size: 16px;
    border-radius: 7px;
    padding: 8px;
    margin-top: 10px;
    cursor: pointer;
}

@media (max-width: 499px) {
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 2px solid #f66962;
        padding: 10px;
        margin: 100px 50px;
        border-radius: 20px;
    }
}