body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #2c3e50; /* Softer dark blue background */
    color: #ecf0f1; /* Light grey text color */
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container {
    text-align: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ecf0f1; /* Light grey text color */
}

.carousel {
    position: relative;
    overflow: hidden;
    height: 100px;
    margin-bottom: 20px;
}

.carousel-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    font-size: 1.5rem; /* Increased font size */
}

.carousel-item.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-item.previous {
    transform: translateX(-100%);
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
}

input[type="email"] {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #bdc3c7; /* Light grey border */
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

button {
    padding: 10px 15px;
    font-size: 1rem;
    color: #2c3e50; /* Dark blue text color */
    background-color: #ecf0f1; /* Light grey background */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #bdc3c7; /* Slightly darker grey on hover */
}

.footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #95a5a6; /* Medium grey text color */
}

.footer a {
    color: #ecf0f1; /* Light grey text color */
    text-decoration: none;
    margin: 0 5px;
}

.footer a:hover {
    text-decoration: underline;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    width: 50px; /* Adjust the size as needed */
    height: auto;
    margin-right: 10px;
}

h1 {
    font-size: 2.5rem;
    color: #ecf0f1; /* Light grey text color */
}
h2 {
    font-size: 1.5rem;
    color: #ecf0f1; /* Light grey text color */
    margin-bottom: 20px;
}