body {
    overflow-x: hidden;
}

main {
    display: flex;
    height: 80vh;
    width: 100vw;
}

.bg-login {
    width: 50%;
    height: 100%;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
    height: 100%;
    width: 50%;
    background: var(--linear-gradient);
}

.titulo {
    display: flex;
    gap: 1.75rem;
}

.titulo h1 {
    font-size: 6rem;
    font-weight: 600;
    color: var(--white-default);
}

.titulo img {
    animation: start 2s ease-in-out forwards;
}

.box-input {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.box-input a {
    text-align: end;
    width: 100%;
    color: white;
}

.icon i {
    color: #222424;
}

.group {
    display: flex;
    line-height: 30px;
    align-items: center;
    position: relative;
    width: 600px;
}

.input {
    width: 100%;
    height: 45px;
    line-height: 30px;
    padding: 0 3rem;
    /* padding-left: 3rem; */
    border: 2px solid transparent;
    border-radius: 10px;
    outline: none;
    background-color: #f8fafc;
    transition: 0.5s ease;

    color: var(--black-default);
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.input::placeholder {
    color: #94a3b8;
}

.input:focus,
.input:hover {
    outline: none;
    border-color: var(--green-primary);
    background-color: #fff;
    box-shadow: 0 0 0 5px rgb(0 205 175 / 30%);
}

.icon {
    position: absolute;
    left: 1rem;
    fill: none;
    font-size: 1rem;
    display: flex;
}

.icon-password {
    display: flex;
    position: absolute;
    right: 1rem;
    fill: none;
    font-size: 1.2rem;
}

form button {
    cursor: pointer;
    width: 14vw;
    height: 70px;
    font-size: 2rem;
    font-weight: 700;
    border: initial;
    border-radius: 10px;
    background: var(--bg-black);
    color: var(--white-default);
}

@media (max-width: 1280px) {
    .titulo {
        display: flex;
        align-items: center;
        height: 120px;
        gap: 1rem;
    }

    .titulo h1 {
        font-size: 5rem;
    }

    .titulo img {
        width: auto;
        height: 100%;
    }

    .box-input {
        width: 100%;
    }

    .group {
        width: 100%;
        padding: 0px 10%;
    }

    .icon {
        left: 12%;
    }

    .icon-password {
        right: 12%;
    }
}

@media (max-width: 960px) {
    .titulo {
        height: 100px;
    }

    .titulo h1 {
        font-size: 4.55rem;
    }

    form button {
        height: 60px;
        width: 15vw;
        font-size: 1.5rem;
    }
}

@media (max-width: 860px) {
    .bg-login {
        display: none;
    }

    form {
        width: 100%;
    }

    .box-input {
        width: 80%;
        gap: 1.5rem;
    }

    form button {
        height: 50px;
        width: 20vw;
        min-width: 160px;
        font-size: 1.25rem;
    }
}

@media (max-width: 560px) {
    .titulo {
        height: 90px;
    }

    .titulo h1 {
        font-size: 4rem;
    }
}

@keyframes start {
    from {
        transform: translateX(50vw) rotate(-360deg);
        opacity: 0;
    }
    to {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}
