* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay to enhance text visibility */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: white;
    text-align: center;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    color: #FFD700; /* Golden color */
}

p {
    font-size: 1.3rem;
    margin: 15px 0;
}

.contact-info a {
    color: #FFD700; /* Golden color for links */
    text-decoration: none;
}

.contact-info .highlight {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 10px;
    color: #FFD700; /* Golden color */
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
}

form input, form button {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

.input-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.input-group input {
    width: 48%; /* Each input takes 48% of the width of the input group */
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

form input {
    border: 1px solid #FFD700;
    background-color: white;
    color: black;
}

form button {
    background-color: #FFD700;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

form button:hover {
    background-color: #ffdf33;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1rem;
    }

    form {
        width: 90%;
    }

    form input, form button {
        max-width: 100%;
    }

    .logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 0.9rem;
    }

    form input, form button {
        width: 100%;
        max-width: 100%;
        padding: 12px;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group input {
        width: 100%;
    }

    .logo {
        max-width: 120px;
    }
}
