/* CSS Document */
@media only screen and (max-width: 500px) {
    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: 0 0;
    }
}

.recaptcha-container {
    max-width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.text-container {
    max-width: 600px; /* Matches the form container width */
    margin: auto; /* Centers it */
    text-align: center; /* Keeps it visually aligned */
}

.container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    border: 2px solid #E4C441;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* This adds the shadow */
}