body {
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://i.redd.it/ngdo4k4kioy71.jpg');
    background-size: cover;
    background-position: center;
    background-color: #f4f4f4;
}

.container {
    max-width: 600px;
    width: 90%;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    text-align: center;
}

h1 {
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

input {
    padding: 10px;
    width: 80%;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

button {
    padding: 10px 15px;
    margin: 5px;
    background-color: #808080;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #606060;
    transform: scale(1.05);
}
