﻿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 > 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;
}

#PublifyoUrl > span {
    position: absolute;
    left: 10px;
    bottom: 13px;
    color: var(--purple);
}
@keyframes rotate260 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#PublifyoUrl > svg {
    animation: rotate260 500ms linear infinite;
    pointer-events:none;
    display:none;
}

#PublifyoUrl > input {
    padding-left: 94px;
}



@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) {
}
