* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.30);
  
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
}

.text-block p {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #333;
    color: #fff;
}

.newsletter form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
    width: 70%;
    font-size: 1rem;
}

.newsletter button {
    padding: 10px 15px;
    border: none;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    margin-left: 10px;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #333;
    color: #fff;
}