body {
    background-color: #F5EFE6; /* Ciepły Beż / Piasek */
    color: #333333; /* Złamana Czerń */
    font-family: 'Lato', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 40px;
}

.logo {
    max-width: 400px;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    color: #2A4B3A; /* Głęboka Zieleń Butelkowa */
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

input[type="email"] {
    padding: 15px;
    border: 1px solid #B97A57; /* Szlachetna Terakota / Miedź */
    border-radius: 5px 0 0 5px;
    width: 60%;
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    box-sizing: border-box;
}

button {
    background-color: #2A4B3A; /* Głęboka Zieleń Butelkowa */
    color: #FFFFFF;
    padding: 15px 30px;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

button:hover {
    background-color: #3a6b52;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }


    h1 {
        font-size: 2.8em;
    }

    form {
        flex-direction: column;
        width: 100%;
    }

    input[type="email"] {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
        text-align: center;
        padding: 15px;
    }

    button {
        width: 100%;
        border-radius: 5px;
        padding: 15px;
    }
}
