/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */
body {
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    color: #414f57; /* Dark grey color */
    background: linear-gradient(60deg, rgba(255, 165, 150, 0.5), rgba(0, 228, 255, 0.35));
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #333;
    color: #fff;
}

/* Typography */
h1 {
    font-size: 2.5em;
    font-weight: bold;
}

ul {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

ul li {
    list-style-type: disc;
    margin-left: 20px;
}

button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #007BFF; /* Blue color */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3; /* Darker blue color on hover */
}

button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #007BFF;
}

/* Form styles */
form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 8px;
    margin-right: 10px;
    color: #333; /* Dark grey color */
}

input[type="number"] {
    width: 200px; /* Adjusted width */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
}

input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    text-transform: none;
    text-align: left;
}

.container p {
    color: #333; /* Dark grey color */
}

.result {
    margin-top: 10px; /* Adjust the margin-top as needed */
    margin-bottom: 10px; /* Adjust the margin-bottom as needed */
    padding: 10px; /* Optional: Add padding to provide some space */
}

.result p {
    margin-bottom: 13px; /* Add margin bottom between lines */
}

.email-section input[type="email"] {
    max-width: 400px; /* Restrict the maximum width */
    padding: 10px;
    margin: 10px 0;
}
