.wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.containerz {
    width: 100%;
    height: 100vw;
    min-height: 100vh;
    /* Isso garante que o .container também cubra toda a altura da viewport */
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 22%;
}

.main-box {
    width: 95%;
    height: 100%;
    /* Ajuste para 'auto' para acomodar o conteúdo */
    background-color: #ffffff;
    opacity: 80%;
    box-shadow: 4px 4px 10px #2b2b2b11, -4px -4px 10px #3b3b3b15;
    border: none;
    display: flex;
    justify-content: space-between;
    /* Ajustado para 'space-around' para distribuir as colunas */
    align-items: center;
    /* Ajustado para 'flex-start' para alinhar itens ao topo */
    padding: 20px;
    /* Ajuste conforme necessário */
    flex-wrap: wrap;
    /* Permite que os itens se envolvam conforme necessário */
    gap: 10px;
    flex-direction: column;
}

form {
    display: flex;
    flex-direction: column;
}

.form-wrapper {
    display: flex;
    margin-top: 10%;
    width: 100%;
}

.boxin {
    width: 1000px;
    height: 100%;
    background-color: rgb(240, 240, 240);
    border-radius: 15px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    padding: 20PX;
    align-items: center;
    justify-content: center;
    position: relative;
}

.boxin::-webkit-scrollbar {
    display: none;
    /* Esconde a barra de rolagem em navegadores WebKit */
}

.warning {
    color: red;
    font-weight: 900;
}

.imp {
    color: red;
    font-weight: 900;
    font-size: 1.2rem;
}

.legend {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cuidado{
    font-size: 2rem;
    line-height: 100% !important;
    height: fit-content !important;
    box-sizing: content-box;
    position: absolute;
    left: 3%;
    transform: translate(-50%, -10%);
}


.boxin {
    -ms-overflow-style: none;
    /* Esconde a barra de rolagem no IE e Edge */
    scrollbar-width: none;
    /* Esconde a barra de rolagem no Firefox */
    /* Seus outros estilos... */
}

.data-reg {
    display: flex;
    background-color: rgb(228, 33, 33);
    width: 100%;
    height: 35px;
    justify-content: center;
    align-items: center;
    padding: 25px;
    gap: 15px;
    border: none;
    border-radius: 10px;
    text-align: center;
}

.data-reg::placeholder {
    font-weight: 500;
}

/* Para garantir a compatibilidade entre navegadores, você pode incluir os seguintes: */
::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #909090;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #909090;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #909090;
    opacity: 1;
    /* O Firefox também tem uma opacidade padrão para placeholders */
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #909090;
    opacity: 1;
}

.data-reg :focus {
    outline: none;
}

.data-reg .codprd {
    padding: 5px;
    background-color: #fff;
    color: black;
    width: 100px;
    border-radius: 5px;
}


.data-reg .nomprd {
    padding: 5px;
    background-color: #fff;
    color: white;
    width: max-content;
    border-radius: 5px;
}

.data-reg .qtdped {
    padding: 5px;
    background-color: #fff;
    color: white;
    width: 220px;
    border-radius: 5px;
}




select:hover {
    cursor: pointer;
}

.column {
    display: flex;
    flex-direction: column;
    width: 48%;
    /* Define a largura para quase metade da 'main-box', ajuste conforme necessário */
    /* Ajustes adicionais de margem/padding podem ser necessários aqui */
    margin: 0;
}


.form-floating {
    margin-bottom: 10px;
    /* Ajuste para espaço entre os campos */
}


.login-header {
    font-size: 3.9rem;
    font-weight: 800;
    margin-top: 8%;
    padding-top: 40px;
}

hr {
    color: #3333338a;
}

#addItem {
    /* Ajuste estes valores conforme necessário para obter o tamanho desejado do botão */
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 1.5rem;
    background-color: #169972;
    border: none;
    /* Necessário para posicionar o ícone */
}

#addItem:hover {
    background-color: #0d503c;
}

#addItem i {
    /* Essas propriedades aplicam o ajuste de centralização */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
}