@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

img {
    width: 100%;
    height: auto;
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.banner {
    position: relative;
    z-index: 1;
}

.banner .wrapper {
    background-repeat: no-repeat;
    background-size: 49% 60%;
    background-position: right center;
}

.banner .wrapper .row {
    min-height: 100vh;
}

.banner::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #F7FAFF;
    z-index: -1;
}

.banner [class*="column-"] {
    width: 50%;
    padding: 0 20px;
}

.banner h1 {
    font-size: 54px;
    font-weight: 700;
    color: #4472C4;
    margin: 0;
}

.banner p {
    font-size: 24px;
    margin: 30px 0;
}

.banner input {
    width: 100%;
    height: 52px;
    border-radius: 6px;
    border: 1px solid #D6D6D6;
    outline: 0 !important;
    color: #929292;
    font-size: 16px;
    padding: 5px 15px;
    margin-bottom: 15px;
}

.banner input::placeholder {
    color: #929292;
}

.banner input:focus {
    border-color: #4472C4;
}

.banner button {
    margin-top: 30px;
    border: 2px solid #4472C4;
    background-color: #4472C4;
    border-radius: 6px;
    color: #fff;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.banner button span {
    position: relative;
    z-index: 1;
}

.banner button::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    /* border-radius: 6px; */
    background: #fff;
    transition: .3s all ease;
}

.banner button:hover {
    color: #4472C4;
    transition: .3s all ease;
}

.banner button:hover::before {
    bottom: 0;
    transition: .3s all ease;
}

@media (max-width: 991px) {
    .row {
        flex-direction: column-reverse;
    }
    .banner .wrapper {
        background-image: none !important;
    }
    .banner [class*="column-"] {
        width: 100%;
    }
    .banner::before {
        content: none;
    }
    .banner .column-1 {
        padding: 30px 15px;
    }
    .banner .column-2 {
        background: #F7FAFF;
        padding: 30px 15px;
    }
}

@media (max-width: 768px) {
    .banner h1 {
        font-size: 40px;
    }
    .banner p {
        font-size: 16px;
        margin: 8px 0 25px;
        max-width: 345px;
    }
    .banner input,
    .banner button {
        font-size: 14px;
    }
    .banner button {
        margin-top: 0;
    }
}