* {
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body {
    height: 100%;
    width: 100%;
}

.logo {
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
}

    .logo span {
        color: #27D12C;
    }

    .logo h1 {
        background: rgba(0, 0, 0, 0.1)
    }

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin-top: 6em;
    --bg-pseudo: rgb(60,63,66) no-repeat center;
    background-size: 100% 100%;
}

    .container:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: var(--bg-pseudo);
        background-size: cover;
        filter: blur(.5px);
        outline: none;
        z-index: -1;
    }

.contact-box {
    max-width: 850px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border: none;
    box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);
}

.left {
    justify-content: center;
    background: rgba(23,22,22,0.95);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    outline: none;
}

    .left form {
        justify-content: center;
        align-items: center;
        margin-top: 120px;
    }

    .left div {
        border-radius: 22px;
        background: rgb(255,255,255);
        margin-left: 45px;
        margin-right: 45px;
        padding: 10px;
        height: 200px;
        width: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .left img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }

.recaptcha {
    transform: scale(0.73);
    transform-origin: 75% 0;
    position: center;
    margin-left: 305px;
}

.right {
    padding: 25px 40px;
    background: rgb(60,63,66);
}

    .right form {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        .right form label {
            display: block;
            text-align: left;
            margin-left: 5px;
            color: #fff;
        }

        .right form .block {
            grid-column: 1 / 3;
        }

        .right form p {
            margin-left: 1em;
            margin-right: 1em;
        }

        .right form div {
            margin-left: 1em;
            margin-right: 1em;
        }

h2 {
    position: relative;
    padding: 0 0 10px;
    margin-bottom: 10px;
    color: rgb(204, 204, 204);
    font-size: 1.7rem;
}

    h2:after {
        content: '';
        position: absolute;
        left: 50%;
        top: 40px;
        bottom: 0px;
        transform: translateX(-50%);
        height: 4px;
        width: 50px;
        border-radius: 2px;
        background-color: #fff;
    }

.field {
    width: 100%;
    border: 2px solid rgba(0, 0, 0, 0);
    outline: none;
    background-color: #fff;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: .1s;
    box-shadow: 2px 2px 2px 1px rgb(38, 128, 188);
}

    .field:hover {
        background-color: rgb(205, 204, 205);
    }

.btn {
    width: 85%;
    padding: 0.5rem 0.5rem;
    background-color: #fff;
    color: #000000;
    font-size: 1.0rem;
    border: none;
    outline: none;
    cursor: pointer;
    transition: .2s;
    height: 35px;
    margin-left: 20px;
}

    .btn:hover {
        background-color: #2ecc71;
        color: #fff;
    }

.field:focus {
    border: 2px solid rgba(30,85,250,0.47);
    background-color: #fff;
}

@media screen and (max-width: 850px) {


    .contact-box {
        grid-template-columns: 1fr;
    }

    .left {
        height: 150px;
    }

        .left form {
            justify-content: center;
            align-items: center;
            margin-top: 2px;
        }


        .left div {
            margin-left: 220px;
            margin-right: 220px;
            margin-top: 13px;
            padding: 10px;
            height: 120px;
            width: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .left img {
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
        }


    .recaptcha {
        transform: scale(0.75);
        transform-origin: 75% 0;
        position: center;
        margin-left: 355px;
    }
}
