body {
    background: url('gb.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin: 0;
    overflow-y: auto;
}

.main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    height: 100%;
    box-sizing: border-box;
}

.left-column {
    width: 45%;
    text-align: left;
}

.left-column h1 {
    font-size: 2.2em;
    margin-bottom: 0.1em;
}

.left-column h2 {
    font-size: 1.3em;
    color: #4CAF50;
    margin-top: 0;
}

.left-column .sub-headline {
    font-size: 1.0em;
    line-height: 1.4;
}

.features {
    margin-top: 15px;
}

.feature h3 {
    color: #4CAF50;
    margin-bottom: 5px;
}

.feature p {
    margin-top: 0;
    margin-bottom: 10px;
}

.launch-message {
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 15px;
    color: #4CAF50;
}

.contact-details {
    margin-top: 15px;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
}

.right-column {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    background: rgba(0, 0, 0, 0.3);
    padding: 3em;
    border-radius: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    transition: all 0.2s ease-in-out;
    width: 320px;
}

form p {
    font-weight: 500;
    color: #fff;
    opacity: 0.7;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

form a {
    text-decoration: none;
    color: #ddd;
    font-size: 12px;
}

form a:hover {
    text-shadow: 2px 2px 6px #00000040;
}

form a:active {
    text-shadow: none;
}

form input,
form textarea {
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    padding: 1em;
    margin-bottom: 1.5em;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

form textarea {
    height: 100px;
    resize: none;
}

form input:hover,
form textarea:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 4px 4px 60px 8px rgba(0, 0, 0, 0.2);
}

form input:focus,
form textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 4px 4px 60px 8px rgba(0, 0, 0, 0.2);
}

form input[type="submit"] {
    margin-top: 10px;
    width: 150px;
    font-size: 1rem;
    border-radius: 5000px;
    cursor: pointer;
    background: rgba(76, 175, 80, 0.4);
}

form input[type="submit"]:hover {
    background: rgba(76, 175, 80, 0.6);
}

form input[type="submit"]:active {
    background: rgba(76, 175, 80, 0.8);
}

form:hover {
    margin: 4px;
}

::placeholder {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.drops {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.drop {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 10px 10px 60px -8px rgba(0, 0, 0, 0.2);
    position: absolute;
    transition: all 0.2s ease;
}

.drop-1 {
    height: 80px;
    width: 80px;
    top: -20px;
    left: -40px;
    z-index: -1;
}

.drop-2 {
    height: 80px;
    width: 80px;
    bottom: -30px;
    right: -10px;
}

.drop-3 {
    height: 100px;
    width: 100px;
    bottom: 120px;
    right: -50px;
    z-index: -1;
}

.drop-4 {
    height: 120px;
    width: 120px;
    top: -60px;
    right: -60px;
}

.drop-5 {
    height: 60px;
    width: 60px;
    bottom: 170px;
    left: 90px;
    z-index: -1;
}

a,
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

#response-message {
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    display: none;
    color: #fff;
    text-align: center;
}

#response-message.success {
    background-color: #4CAF50;
}

#response-message.error {
    background-color: #f44336;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    opacity: 0; /* Initially hidden */
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }


/* Responsiveness */
@media (max-width: 1024px) {
    .main-container {
        padding: 30px;
    }

    .left-column h1 {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    body {
        height: auto;
        overflow-y: auto;
    }

    .main-container {
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        height: auto;
    }

    .left-column,
    .right-column {
        width: 100%;
        text-align: center;
    }

    .left-column {
        margin-bottom: 50px;
    }

    .container {
        transform: none;
        top: 0;
        left: 0;
        position: relative;
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 20px;
    }

    form {
        width: 100%;
        max-width: 350px;
        padding: 2em;
    }
}

@media (max-width: 480px) {
    .left-column h1 {
        font-size: 2em;
    }

    .left-column h2 {
        font-size: 1.5em;
    }

    .feature h3 {
        font-size: 1.2em;
    }

    .launch-message {
        font-size: 1.2em;
    }

    form {
        padding: 1.5em;
    }
}