@import url(https://fonts.googleapis.com/css2?family=Poppins%3Awght%40400%3B500&display=swap&fbclid=IwY2xjawIoAMBleHRuA2FlbQIxMAABHQ3R3w09FBSBdALd-QoIrP_J_tsyaMvVwoV__-gxdibaJFoyz3sLWl04yw_aem_Hm2gpOrZpyC4rZttF3iyug);
*{
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-y: auto !important;
}

.wrapper{
    background: #ececec;
    padding: 0 20px 0 20px;
}
.main{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.row{
    width: 900px;
    height: 550px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.2);
}
.side-image{
    background-image: url(background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 10px 0 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.side-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px 0 0 10px;
}
.side-image img{
    width: 80px;
    margin-bottom: 10px;
}
.text, .side-image img {
    position: relative;
    z-index: 1;
}
.text{
    color: #fff;
    font-size: 20px;
}
.text .title{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}
.text .subtitle{
    font-size: 16px;
    font-weight: normal;
    max-width: 150%;
}
.right{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.input-box{
    width: 330px;
    box-sizing: border-box;
}

.input-box header{
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
}

.input-field{
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 10px 0 10px;
}

.input{
    height: 45px;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    margin-bottom: 20px;
    color: #40414a;
}

.input-box .input-field label{
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
    transition: .5s;
}

.input-field .input:focus ~ label{
    top: -10px;
    font-size: 13px;
}

.input-field .input:valid ~ label{
    top: -10px;
    font-size: 13px;
    color: #5d5076;
}

.input-field .input:focus, .input-field .input:valid{
    border-bottom: 1px solid #743ae1;
}

.g-recaptcha {
    transform: scale(1); 
    transform-origin: center;
    display: block; 
    margin: 0 auto;
}

.button{
    border: none;
    outline: none;
    height: 45px;
    background: #273AA2;
    color: white;
    border-radius: 5px;
    transition: .4s;
    cursor: pointer;
}

@media only screen and (max-width: 768px){
    .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        height: auto;
    }

    .side-image {
        border-radius: 10px 10px 0 0;
        width: 100%;
        min-height: 200px;
    }

    .right {
        width: 100%;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .input-box {
        width: 100%;
        max-width: 330px;
    }

    .input-field {
        width: 100%;
        text-align: center;
    }

    .input {
        width: 100%;
        text-align: left;
        font-size: 14px;
        margin-bottom: 0px;
    }

    .button {
        width: 100%;
        margin-top: 0px;
    }
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
        margin-top: 0px;
        padding: 0px;
    }

    .recaptcha-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 10px 0;
        margin: 0px;
    }
}

