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

::placeholder {
    text-align: left;
    font-size: 15px;
}

body {
    background-color: #F7F8FA;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
}

.cf-turnstile {
            display: block; /* Ensure it's treated as a block for alignment */
            margin: 20px auto; /* Center it within the form */
            width: 300px; /* Control the width to match form layout */
        }

        .my-form {
            text-align: center; /* Center the form contents */
            max-width: 500px; /* Optional: limit the form's width */
            margin: auto; /* Center the form on the page */
        }

        @media (max-width: 600px) {
            .cf-turnstile {
                width: 90%; /* Responsive width for smaller screens */
            }
        }

/************ Square *************/

.square {
    transition: 1s;
    margin-left: 90px;
    margin-top: 100px;
    border: 5px solid #000;
    letter-spacing: normal;
    line-height: normal;
    /* Color & Background */
    color: rgb(0, 0, 0);
    /* Box */
    height: 50px;
    width: 50px;
    /* Positioning */
    position: relative;
    /* Effects */
    transform: matrix(6.12323e-17, -1, 1, 6.12323e-17, 0, 0);
    transition: transform 0.4s ease-in-out 0s;
    box-sizing: content-box;
    margin-bottom: 10px;
    border-radius: 10px;
    transform: rotate(0deg);
    -webkit-user-drag: none;
}

.square:hover {
    transition: 1s;
    transform: rotate(-180deg);
}

.logo-text {
    text-align: center;
    font-size: 25px;
    letter-spacing: normal;
    /* Positioning */
    position: absolute;
    top: 25px;
    bottom: 10.7778px;
    right: 5.29167px;
    left: 25px;
    float: none;
    display: block;
    clear: none;
    z-index: auto;
    /* Effects */
    transform: matrix(6.12323e-17, 1, -1, 6.12323e-17, -9.77778, -7.11111);
    transition: transform 0.4s ease-in-out 0s;
}

.my-form {
    width: 30%;
    margin-bottom: 5%;
    text-align: center;
    border-radius: 10px;
    background-color: #F7F8FA;
    padding: 20px;
    border: 2px solid white;
    box-shadow: 0px 4px 8px 0px rgb(0, 35, 102, 0.2);
}

input {
    width: 70%;
    height: 50%;
    padding-top: 25px;
    padding-bottom: 10px;
    background: none;
    text-align: left;
    outline: none;
    resize: none;
    border: 0;
    transition: all .3s;
    border-bottom: 2px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
}

input:focus {
    border-bottom: 2px solid #4169e1;
    color: rgb(0, 0, 0);
    caret-color: 2px;
}

.submit {
    margin-top: 4%;
    margin-bottom: 2%;
    border: none;
    width: 25%;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
}

.submit:hover {
    transition: 0.5s;
    background-color: #4169e1;
}


/* CSS */

#g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -50px 0 0 0 !important;
    z-index: -999999;
    opacity: 0;
}

@media screen and (max-width: 736px) {
    .square {
        margin-left: 15px;
        margin-bottom: 20px;
    }
    .my-form {
        width: 75%;
    }
    .submit {
        width: 35%;
    }
}