body {
    font-family: 'Arial', sans-serif;
    background-image: url('assets/background.jpg');
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    flex-wrap: wrap;
    background: #2ebed1;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.calculator,
.results {
    padding: 20px;
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease-in-out;
}

h1,
h2 {
    text-align: center;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #600ce6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s, transform 0.3s;
}

button:hover {
    background-color: #181718;
    transform: scale(1.05);
}

.results {
    background: #bdd6f0;
    border-left: 2px solid #e9ecef;
}

#result {
    text-align: center;
    font-size: 18px;
}

#result p {
    margin: 10px 0;
}

span {
    font-weight: bold;
    color: #007bff;
}

@media (max-width: 768px) {
    .calculator,
    .results {
        min-width: 100%;
        flex: none;
    }
}
