body, html {
    margin: 0;
    padding: 0;
    height: 100%;
   
}

.background-image {
    background-image: url('../img/OBS-bg-3.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.content {
    text-align: center;
    margin-bottom:100px;
    color:#ffffff;
    max-width: calc(100% - 40px); /* full width minus the desired padding */
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;

}

.content h2 {
    font-family:'blowbrush',arial,sans-serif;
    font-size:2em;
    text-shadow: 0px 0px 10px #000000;
}

.logo {
    max-width: 400px; /* Adjust as needed */
    margin-bottom: 20px;
    width:100%;
}

.h-logo {
    max-width: 200px; /* Adjust as needed */
    margin:20px auto;
    width:100%;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 100px;
    text-align:center;
}
input[type="email"]::placeholder {
    text-align: center;
}

/* For cross-browser compatibility */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    text-align: center;
}
::-moz-placeholder { /* Firefox 19+ */
    text-align: center;
}
:-ms-input-placeholder { /* IE 10+ */
    text-align: center;
}
:-moz-placeholder { /* Firefox 18- */
    text-align: center;
}

input[type="submit"] {
    padding: 10px;
    border: none;
    border-radius: 100px;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
}


/* Media query for larger screens */
@media (min-width: 768px) {
    .content {
        max-width: 100%; /* Full width for larger screens */
    }
}