body {
    background-color: var(--primary-color);

    font-family: "Poppins", serif;
    margin: 0;

}

/* Esconde completamente a barra de rolagem no Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

/* Para Firefox */
* {
    scrollbar-width: none;
}

.img {
    height: 100%;
    -webkit-height: 100%;
    -moz-height: 100%;
    -ms-height: 100%;
    object-fit: contain;
}

.img2 {
    -webkit-width: 100%;
    -moz-width: 100%;
    -ms-width: 100%;
    width: 100%;
    object-fit: cover;
}

.img3 {
    width: 100%;
    -webkit-width: 100%;
    -moz-width: 100%;
    -ms-width: 100%;
    -webkit-height: 100%;
    -moz-height: 100%;
    -ms-height: 100%;
    height: 100%;
    object-fit: cover;
}


.alingLogin {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 90vh;
    overflow: hidden;
}


/* #back_div_blob{
    height: 35rem;
    width: 40rem;
    display: flex;
    position: absolute;
    background-color: var(--terciary-color);
    border-radius: 73% 25% 18% 70% / 60% 40% 55% 42%;
} */
/* border-radius: 82% 29% 18% 70% / 59% 88% 12% 50%; */




.blob {
    position: absolute;
    top: 0;
    left: 0;
    fill: #f5f5f5;
    width: 80vmax;
    z-index: -1;
    
    animation: move 20s ease-in-out infinite;
    transform-origin: 50% 50%;
}

@keyframes move {
    0% {
        transform: scale(0.8, 1) translate(10px, 5vh);
    }

    38% {
        transform: scale(0.8, 1) translate(80vw, 5vh) rotate(160deg);
    }

    40% {
        transform: scale(0.8, 1) translate(80vw, 5vh) rotate(160deg);
    }

    78% {
        transform: scale(0.8, 1) translate(0vw, 5vh) rotate(-20deg);
    }

    80% {
        transform: scale(0.8, 1) translate(0vw, 5vh) rotate(-20deg);
    }

    100% {
        transform: scale(0.8, 1) translate(10px, 5vh);
    }
}


.opCadastro {
    display: flex;
    height: 5rem;
    padding: 1rem;
    justify-content: space-between;
    align-items: center;
    color: var(--white-color);
    width: 20rem;
    margin: 2rem;
    border-radius: 0.5rem;
    transition: 0.5s;
}

.opCadastro:hover {
    transform: scale(1.15);
}

.opCadastro img {
    height: 2.5rem;
}

#opUpEm {
    background-color: var(--primary-color);
}

#opUpPf {
    background-color: var(--secondary-color);
    /* border: 5px solid var(--white-color); */
}


.container {
    text-align: center;
    padding: 1.5rem;
    background: #f5f5f5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    width: 80%;
    position: absolute;
    top: 50;
}

.title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.buttons a {
    width: 100%;
}

.button {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.button svg {
    margin-left: 10px;
}

.button.company {
    background: var(--primary-color);
}

.button.company:hover {
    background: #576277;
    transform: translateY(-3px);
}

.button.person {
    background: var(--secondary-color);
}

.button.person:hover {
    background: #ea7f61;
    transform: translateY(-3px);
}

.voltar {
    padding: 0.5rem;
    margin: 0 2rem;
    color: #f5f5f5;
    background-color: transparent;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    transition: 0.3s;
    width: 100%;
    max-width: 7rem;
    position: relative;
    z-index: 101;
    border: 1px solid var(--secondary-color);
}

.voltar:hover {
    background: #ea7f61;
    transform: translateY(-3px);
}


@media (min-width: 700px) {

    .container {
        max-width: 400px;
    }
    .blob{
        width: 50vmax;
    }
}