﻿main {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    max-width: 100%;
    display: flex;
}


form {
    width: 50%;
    height: 100vh;
    object-fit: cover;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--white);
}

    form > a > svg {
        position: fixed;
        top: 8px;
        left: 14px;
    }

    form > h1 {
        font-weight: 800;
        text-align: center;
        font-size: 39px;
    }

    form > span {
        text-align: center;
        font-weight: 400;
        margin: 5px 0 10px 0;
    }

    form > label {
        position: relative;
        max-width: 400px;
        width: 90% !important;
    }

    form > button {
        max-width: 400px;
        width: 90% !important;
    }

    form > a {
        font-size: 14px;
        margin-top: 12px;
        text-decoration: underline;
        color: var(--purple);
    }

    form > p {
        margin-top: 12px;
        text-align: center;
    }

    form > label > svg {
        position: absolute;
        right: 15px;
        width: 18px;
        bottom: 14px;
        cursor: pointer;
    }

#yes {
    display: none;
}

main > img {
    width: 50%;
    height: 100vh;
    object-fit: cover;
}


.btn-purple {
    margin-top: 16px;
}


@media(max-width:1400px) {
}

@media(max-width:1200px) {
}

@media(max-width:992px) {
}

@media(max-width:768px) {
    main > img{
        display:none;
    }
    form{
        width:100%;
    }
}

@media(max-width:576px) {
}
