.calculator-container {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.econopass-logo {
    width: 65px; /* Adjust the size as needed */
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

h2 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center; /* Center align the title */
}

label {
    display: block;
    margin-bottom: 5px;
    text-align: left; /* Left align all labels */
}

.left-align {
    text-align: left;
}

input, select, button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.input-group {
    display: flex;
    justify-content: space-between;
}

.input-group input {
    flex: 1;
    margin-right: 10px;
}

.input-group select {
    flex: 0 0 30%;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

#result {
    margin-top: 20px;
    text-align: center;
    font-size: 16px; /* Regular size font */
}

#bmi {
    display: inline-block;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    font-size: 24px; /* Larger font size */
    font-weight: bold;
    margin-top: 10px; /* Slightly less margin */
    animation: zoom 1s infinite alternate;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
