* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background: rgb(236, 250, 250);
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

section .imgBx {
    position: relative;
    width: 50%;
    height: 100%;
}

section .imgBx:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, #a8d9f5, #05665e);
    z-index: 1;
    mix-blend-mode: screen;
}

section .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section .contentBx {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}

section .contentBx .formBx {
    width: 50%;
}

section .contentBx .formBx h2 {
    color: green;
    font-weight: 600;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid aqua;
    display: inline-block;
    letter-spacing: 1.5px;
}

section .contentBx .formBx .inputBx {
    margin-bottom: 20px;
}

section .contentBx .formBx .inputBx span {
    font-size: 1rem;
    margin-bottom: 5px;
    display: inline-block;
    color: rgb(6, 73, 6);
    font-weight: 400;
    letter-spacing: .8px;
}

section .contentBx .formBx .inputBx input {
    width: 100%;
    padding: 10px 20px;
    outline: none;
    font-weight: 500;
    border: 1px solid aqua;
    font-size: 1rem;
    letter-spacing: 1.2px;
    color: rgb(7, 63, 7);
    border-radius: 5px;
    background: transparent;
}

section .contentBx .formBx .inputBx input[type = "submit"] {
    background: rgb(41, 129, 41);
    color: white;
    outline: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.2rem;
}

section .contentBx .formBx .inputBx input[type = "submit"]:hover {
    background: rgb(95, 106, 250);
}

section .contentBx .formBx .remember {
    margin-bottom: 10px;
    color: rgb(11, 73, 11);
}

section .contentBx .formBx .inputBx p a {
    color: rgb(11, 73, 11);
}

section .contentBx .formBx .inputBx p  {
    color: rgb(11, 73, 11);
}

@media screen and (max-width: 770px) {
    section .imgBx {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    section .contentBx {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    section .contentBx .formBx {
        width: 100%;
        padding: 40px;
        background: rgb(211, 245, 211/0.9);
        margin: 50px;
    }

    section .contentBx .formBx h3 {
        text-align: center;
        margin: 30px 0 10px;
        font-weight: 500;
    }
}

