* {
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}
  
html, body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #3E3E3E;
}

.main {
    background-image: linear-gradient(to bottom right, #E0F5FF 0%, #F6EEFF 78%, #E8D4FF 100%);
    padding-top: 100px;
    padding-bottom: 100px;
     box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inner {
    width: 100%;
    max-width: var(--max-width-layout);
    position: relative;
}


.card {
    display: grid;
    grid-template-columns: 3fr 2fr;
    border-radius: 10px;
    background-color: #FFFFFF;
}

.main .left {
    position: relative;
    padding: 100px;
    background-image: linear-gradient(to bottom right, #00B0FF 0%, #861FFC 78%, #861FFC 100%);
    border-radius: 10px 0 0 10px;
    color: #FFFFFF;
}

.main .background {
    position: absolute;
    bottom: -50px;
    left: -15%;
    width: 130%;
}

.background img {
    width: 100%;
}

.main .left h1 {
    font-weight: bold;
    font-size: 45px;
}

.main .left p {
    font-weight: 600;
    font-size: 20px;
}

.right {
    z-index: 1;
    padding: 150px 25px;
}

.right h2 {
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    width: 100%;
}

.right p {
    font-size: 17px;
}

.right .identity {
    display: flex;
    width: 100%;
    gap: 10px;
}

.right .email {
    width: 100%;
    margin-top: 10px;
}

input {
    width: 100%;
    border: 0.7px solid #03A9F4;
    border-radius: 5px;
    padding: 15px;
    font-size: 15px;
    background-color: rgba(178, 178, 178, 0.13);
}

.privacy {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    gap: 5px;
}

.privacy p {
    margin: 0;
    font-size: 12px;
}

.checkbox {
    width: 20px;
    margin-top: 5px;
}

button, .button {
    margin-top: 10px;
    width: 100%;
    padding: 15px;
    background-image: linear-gradient(to bottom right, #00B0FF 0%, #861FFC 78%, #861FFC 100%);
    border-radius: 7px;
    color: #FFFFFF;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.hide, .sent {
    display: none;
}

.show {
    display: block;
}

a {
    font-weight: bold;
    color: #169FF2;
}

.checkbox-container {
    width: 40px;
}

input[type="checkbox"] {
    margin: 5px 10px 0 0;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 1px solid #03A9F4;
    appearance: none;
    background-color: transparent;
    outline: none;
    transition: outline 0.1s;
}

input[type="checkbox"]:checked {
    background-size: cover;
    padding: 2px;
}

input[type="checkbox"]:not(:disabled):checked {
    border: none;
    background: url(/assets/images/list-bullet-check.svg);
    background-size: cover;
}

.header::after {
    content: ' ';
    position: absolute;
    background: var(--primary-linear-gradient);
}

body > nav {
    display: none !important;
}

.header {
    display: none;
}

@media only screen and (max-width: 1120px) {

    .header .inner {
        padding: 0 36px;
    }

    .header .inner .right img {
        height: 360px;
        position: relative;
        top: -20px;
    }

}

@media only screen and (max-width: 667px) {

    .header {
        height: 450px;
        display: block;
    }

    .main .left {
        display: none;
    }

    .right {
        padding: 25px;
    }

    .right .identity {
    display: block;
}

    .identity input:nth-child(1) {
        margin-bottom: 10px;
    }

    .card {
        margin-top: -75px;
    display: block;
}

.main {
    position: relative;
    padding: 0 25px 50px 25px;

}

.light {
    display: none;
}

body > nav {
    display: flex !important;
}

.footer .inner > svg {
        margin: 60px 0 0 28px!important;
    }
}