*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #f1f1f1;
    color: #fbf9f9ff; /* Added text color */
}

#containerForAll{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#containerEsquerda{
    height: auto;
    width: 31%;
    margin-top: 4rem;
    margin-right: 50%;
    display: flex;
    flex-direction: column;
    max-height: 70vh;
}

.logoBaseApparel{
    margin-left: 8rem;
    margin-top: 3rem;
    position: absolute;
}

.modelo{
    border: none !important;
    height: 100vh;
    width: auto;
    right: 0;
    position: absolute;
}

@media screen and (max-width: 768px) {
    .modelo{
        object-fit: cover;
        object-position: 50% 20%;
        height: 30vh;
        width: 100vw;
        margin-top: 7rem;
    }

    #containerForAll{
        height: auto;
        width: auto;
        display: flex;
        flex-direction: column;
        position: absolute;
        margin-top: 26rem;
        align-items: center;
        justify-items: center;
    }

    #containerEsquerda{
        border: none !important;
        height: auto;   
        width: 100%;
        margin-right: 0;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-items: center;
    }

    .tituloRosa, .tituloPreto {
        font-size: 1rem; 
        letter-spacing: 0.5rem;
    }

    .descricao {
        font-size: 1rem !important; /* Ajuste o tamanho da fonte para telas menores */
        padding: 0 1rem; /* Adicione padding para evitar que o texto encoste nas bordas */
    }

    #email{
        background-color: white;
        border:1px solid #F29496;
        border-radius: 120px;
        height: 3rem !important;
        width: 80vw !important;
        font-family:monospace;
        padding-left: 1rem;
        outline: none;

    }
    
    .buttonEmail{
        background-color: #F29496;
        border: none;
        border-radius: 120px;
        color: white;
        height: 3rem !important;
        width: rem !important;
        font-family:monospace; 
        font-weight: lighter;
        font-size: 2rem;
        margin-left: -5rem;
        cursor: pointer;
    }
    
    .buttonEmail:hover{
        background-color: #d63f41;
        color: white;
        transition: 0.4s;
    }
}

.tituloRosa{
    color: #F29496;
    text-transform: uppercase;
    letter-spacing: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    font-size: 3rem;
}

.tituloPreto{
    color: rgb(73, 73, 73);
    text-transform: uppercase;
    letter-spacing: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;    
    font-size: 3rem;
}

.descricao{
    color: #F29496;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    font-weight: lighter;
    font-style: italic;
    line-height: 1.5rem;
    margin-top: 2rem;
}

.imgDireita {
    display: block;
    margin-left: auto;
    margin-right: 0;
}

#label{
    display: flex;
    flex-direction: row;
    height: auto;
    width: auto;
    align-items: center;
    justify-items: center;
    margin-top: 2rem;
}

#email{
    background-color: white;
    border:1px solid #F29496;
    border-radius: 120px;
    height: 2.5rem;
    width: 100%;
    font-family:monospace;
    padding-left: 1rem;
    outline: none;
}

.buttonEmail{
    background-color: #F29496;
    border: none;
    border-radius: 120px;
    color: white;
    height: 2.5rem;
    width: 6rem;
    font-family:monospace; 
    font-weight: lighter;
    font-size: 2rem;
    margin-left: -5rem;
    cursor: pointer;
}

.buttonEmail:hover{
    background-color: #d63f41;
    color: white;
    transition: 0.4s;
}

footer {
    text-align: left;
    margin-top: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    color: #888;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

footer a {
    color: #888;
    text-decoration: none;
}

footer a:hover {
    color: #555;
}

.atribuicao{
    max-height: 12px;
}