* {
    margin: 0;
    padding: 0;
}

body {
    background: rgba(20, 20, 20, 1.0);
    overflow: hidden;
}

.container {
    color: rgba(245, 245, 220, 1.0);
    margin: 100px;
    padding: 30px;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.2) transparent;
    backdrop-filter: blur(5px);


}

h1 {
    font-family: 'Clash Grotesk', sans-serif;
}

p {
    font-family: 'Clash Grotesk', sans-serif;
    font-size: 18px;
}

form {
    font-family: 'Clash Grotesk', sans-serif;
}

button {
    display: flex;
    position: relative;
    top: 35px;
    left: 45%;
    background: transparent;
    border: 2px solid rgba(245, 245, 220, 1.0);
    border-radius: 16px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bolder;
    color: rgba(245, 245, 220, 1.0);
}

button:hover {
    background-color: rgba(245, 245, 220, 1.0);
    color: black;
    transition: .5s;
}

input {
    background: transparent;
    border: 2px solid rgba(245, 245, 220, 1.0);
    border-radius: 16px;
    padding: 5px 10px;
    color: rgba(245, 245, 220, 1.0);
}

a {
    text-decoration: none;
    color: rgba(245, 245, 220, 1.0);
}

.sign:hover {
    color: blue;
    text-decoration: solid;
}

button a:hover {
    color: black;
}

.wink {
    position: absolute;
    bottom: 400px;
    left: 0;
    max-width: 280px;
}

.check {
    position: absolute;
    bottom: 0;
    left: 900px;
    max-width: 280px;
}


/*---- media screen -----*/

@media screen and (max-width: 768px) {
    /* 1. Free up the body so users can actually scroll if needed */
    body {
        overflow: auto;
    }

    /* 2. Shrink the massive margins so the form has room to breathe */
    .container {
        margin: 40px 20px;
        padding: 20px;
    }

    /* 3. Make inputs easier to tap on standard phone screens */
    input {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 15px;
    }

    /* 4. Center the button cleanly without hardcoded percentages */
    button {
        position: relative;
        top: 20px;
        left: 0;
        margin: 0 auto; /* Purely centers the flex element */
        justify-content: center;
    }

    /* 5. Handle the illustrations so they don't break the layout */
    .wink, .check {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        margin: 20px auto !important;
        display: block;
        max-width: 180px; /* Scale down the images for small screens */
    }
}
