/* Body background image setup */
body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

/* Hero container and form styling */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.box {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 8px;
    padding: 2rem;
}

button {
    font-family: 'Montserrat', sans-serif;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .hero-body {
        padding: 2rem;
    }

    .box {
        width: 100%;
        padding: 1.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }
}
