﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 13px;
    user-select: none;
}

a {
    text-decoration: none;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

    section .imgBox {
        position: absolute;
        width: 100%;
        height: 100vh;
        position: absolute;
    }

        section .imgBox::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(45deg, #e91e629c, #03a8f49c);*/
            z-index: 2;
            mix-blend-mode: screen;
        }

        section .imgBox img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: fill;
        }

    section .textContentBox {
        position: relative;
        display: flex;
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        section .textContentBox .textContent {
            width: 500px;
            height: 500px;
            padding: 40px;
            display: flex;
            justify-content: center;
            flex-direction: column;
            background: rgba(255, 255, 255, 0.9);
            border-right: 1px solid #aaa;
            border-bottom-left-radius: 5px;
            border-top-left-radius: 5px;
            z-index: 20;
        }

        section .textContentBox img {
            width: 250px;
            margin-bottom: 25px;
        }

        section .textContentBox h2 {
            font-size: 1.75rem;
            color: #333;
            margin-bottom: 7px;
        }

        section .textContentBox p {
            font-size: 1.1rem;
            color: #5d5d5d;
            font-weight: 500;
            text-align: justify;
            margin-bottom: 10px;
        }

    section .contentBox {
        position: relative;
        display: flex;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        section .contentBox .formBox {
            width: 400px;
            height: 500px;
            padding: 40px;
            display: flex;
            justify-content: center;
            flex-direction: column;
            background: rgba(255, 255, 255, 0.9);
            border-bottom-right-radius: 5px;
            border-top-right-radius: 5px;
            z-index: 20;
        }


            section .contentBox .formBox h2 {
                color: #5c82d4;
                font-weight: 700;
                font-size: 1.9rem;
                line-height: 2rem;
                text-align: left;
                max-width: max-content;
                text-transform: uppercase;
                margin-bottom: 25px;
                border-bottom: 4px solid #1d37c9;
                display: inline-block;
                letter-spacing: 1px;
            }

            section .contentBox .formBox .forget {
                margin-bottom: 15px !important;
                transition: 0.4s all;
            }

                section .contentBox .formBox .forget a {
                    text-decoration: none;
                    font-size: 1.1rem;
                    transition: 0.4s all;
                    font-weight: 500;
                }

                    section .contentBox .formBox .forget a:hover {
                        text-decoration: underline;
                    }

            section .contentBox .formBox img {
                width: 65%;
                mix-blend-mode: multiply;
                margin-bottom: 20px;
            }

            section .contentBox .formBox .inputBox {
                margin-bottom: 15px;
                position: relative;
            }

                section .contentBox .formBox .inputBox span {
                    font-size: 1.1rem;
                    margin-bottom: 3px;
                    display: inline-block;
                    color: #1d56d1;
                    font-weight: 600;
                    letter-spacing: 1px;
                }

                    section .contentBox .formBox .inputBox span.show {
                        position: absolute;
                        top: 57%;
                        font-size: 0.9rem;
                        right: 10px;
                        color: var(--secondary);
                        cursor: pointer;
                        display: none;
                        font-weight: 600;
                        text-transform: uppercase;
                        user-select: none;
                    }

                section .contentBox .formBox .inputBox input {
                    width: 100%;
                    padding: 10px;
                    outline: none;
                    font-weight: 500;
                    border: 1px solid #aaa;
                    font-size: 1.1rem;
                    letter-spacing: 1px;
                    color: #444;
                    background: transparent;
                    border-radius: 3px;
                }

                    section .contentBox .formBox .inputBox input:focus {
                        border-color: #1d56d1;
                    }

                    section .contentBox .formBox .inputBox input[type="submit"] {
                        background: #1d56d1b4;
                        color: #eee;
                        text-transform: uppercase;
                        outline: none;
                        border: none;
                        width: max-content;
                        padding: 8px 20px;
                        font-weight: 600;
                        cursor: pointer;
                        transition: 0.3s all;
                    }

                        section .contentBox .formBox .inputBox input[type="submit"]:hover {
                            background: #1d56d1;
                        }
                    section .contentBox .formBox .inputBox input[type="button"] {
                        background: #1d56d1b4;
                        color: #eee;
                        text-transform: uppercase;
                        outline: none;
                        border: none;
                        width: max-content;
                        padding: 8px 20px;
                        font-weight: 600;
                        cursor: pointer;
                        transition: 0.3s all;
                    }

                        section .contentBox .formBox .inputBox input[type="button"]:hover {
                            background: #1d56d1;
                        }

            section .contentBox .formBox .copyright {
                display: flex;
                justify-content: center;
                flex-direction: column;
            }

                section .contentBox .formBox .copyright .partnerImg {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }

section .contentBox .formBox .copyright p {
    font-weight: 500;
    font-size: 1.05rem;
}

    section .contentBox .formBox .copyright p span {
        font-weight: 700;
        color: #1d56d1;
    }

                section .contentBox .formBox .copyright img {
                    height: 30px;
                    width: auto;
                    margin-top: 10px;
                    margin-bottom: 0;
                }

@media only screen and (max-width: 991px) {
    section {
        flex-direction: column;
        padding: 90px 0;
    }

        section .contentBox {
            width: 100%;
        }

            section .textContentBox .textContent, section .contentBox .formBox {
                width: 80%;
                height: auto;
                padding: 25px;
                border: unset;
                border-radius: unset;
            }


        section .textContentBox {
            order: 2 !important;
        }

        section .contentBox {
            order: 1 !important;
        }

        section .textContentBox .textContent {
            border-top: 1px solid #aaa;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
        }

        section .contentBox .formBox {
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }

            section .contentBox .formBox h2 {
                font-size: 1.5rem;
            }
}

@media only screen and (max-width: 720px) {
    section {
        padding: 50px 0;
    }

        section .textContentBox p {
            font-size: 1rem;
        }

        section .textContentBox img {
            width: 225px;
        }
}

@media only screen and (max-width: 480px) {
    section .textContentBox img {
        width: 200px;
    }
}
