* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    /* background-color: #f4f4f4; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: white;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
}

h1 {
    font-size: 36px;
    color: #333;
}

p {
    margin-bottom: 20px;
    color: #666;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.email-form input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.email-form button {
    padding: 10px;
    font-size: 16px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.email-form button:hover {
    background-color: #0056b3;
}


/* video  */
video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the screen */
    z-index: -1; /* Make sure video stays behind any other content */
}

/* Example content on top of the video */
.content {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 2rem;
    text-align: center;
    padding: 50px;
    font-family: Arial, sans-serif;
}