@import url("https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Rowdies", serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    /* height: 100vh; */
    margin: 0;
    background: url(bg.webp);
    background-size: cover;
}
h1 {
    color: #f8e5cb;
    font-size: 40px;
}
.container {
    text-align: center;
    width: 40%;
    padding: 20px;
    background: #6a2c302e;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
}
input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    margin: 10px 0;
    border: 1px solid #ffffff3d;
    border-radius: 5px;
    font-family: inherit;
    font-family: none;
    background-color: #ffffff30;
    backdrop-filter: blur(10px);
    color: #f8e5cb;
    outline: none;
}
input::placeholder {
    color: #f8e5cb;
}
button {
    width: 100%;
    background-color: #d4202f;
    color: #fff;
    padding: 10px;
    border: none;
    font-family: inherit;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 15px;
    cursor: pointer;
}
.note {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 300;
    color: #fff;
}
@media (max-width: 767px) {
    .container {
        width: 90%;
    }
}
