body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #FFC0CB, #FFA07A); /* Gradient background */
    color: #333; /* Text color */
}

/* Container Styles */
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95); /* White background with slight transparency */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Enhanced box shadow */
}

/* Logo Container Styles */
.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container img {
    max-width: 200px; /* Adjust based on your logo size */
    height: auto;
}

/* Title Styles */
.title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

/* Form Group Styles */
.form-group {
    margin-bottom: 20px;
}

/* Label Styles */
label {
    display: block;
    margin-bottom: 10px;
    color: #666; /* Label text color */
}

/* Input Styles */
input[type="number"],
input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #FFA07A; /* Custom input border color */
    border-radius: 8px;
    box-sizing: border-box;
}

#result {
    margin-top: 30px;
    text-align: center;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 90%;
    }
    .logo-container img {
        max-width: 150px; /* Adjust image size for smaller screens */
    }
}

@media (max-width: 576px) {
    .container {
        padding: 15px;
    }
    .logo-container img {
        max-width: 100px; /* Adjust image size for even smaller screens */
    }
}
