<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.titulo-form{
    margin-bottom: 30px;
}

.form-container{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding-top: 50px;
    width: 100%;
    margin-bottom: 20px;
}

#form-cadastro{
    width: 70%;
}

.step {
    display: none;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    width:100%;
    margin: 0 auto;
    transition: opacity 0.3s ease-in-out;
}

.divisao{
    display: flex;
    flex-direction: row;
}

.step.active {
    display: block;
    opacity: 1;
}


.step h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #444;
} 


input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="password"], select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 16px;
    transition: border 0.3s ease;
}

input[type="text"]:focus, input[type="number"]:focus, select:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="date"]:focus, input[type="password"]:focus {
    border-color: #fcd619 !important;
    outline: none;
}

/* BotÃµes */
button {
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e1b300;
}

.novo_produto_button, .novo_cartao_button{
    background-color: #fcd619 !important;
    font-weight: bold !important;

}

.novo_produto_button:hover, .novo_cartao_button:hover{
    background-color: #e2bd01 !important;

}


/* Estilo para botÃµes de navegaÃ§Ã£o */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

button#btn-back {
    background-color: #f44336;
}

button#btn-back:hover {
    background-color: #d32f2f;
}

button#btn-submit {
    background-color: #0e4374;
}

button#btn-submit:hover {
    background-color: #052d52;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Animando o botÃ£o de "PrÃ³ximo" quando uma etapa for completada */
button#btn-next {
    background-color: #0e4374;
    color: white;
    transition: background-color 0.3s ease;
}

button#btn-next:hover {
    background-color: #052d52;
}

/* Tela de sucesso */
.success-message {
    text-align: center;
    padding: 50px;
    font-size: 24px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-top: 30px;
    font-weight: bold;
}

.success-message h3 {
    color: #4CAF50;
}


#descricao_loja_base{
    font-size: 12px;
    font-weight: bold;
    color: #f32323;
}


.card-produto{
    display: flex;
    flex-direction: column;
    padding: 15px 15px 15px 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.card-produto-produto, .card-produto-descricao{
    display: flex;
    flex-direction: row;
    padding-top: 2px;
    padding-bottom: 2px;
}


select.form-control:focus, input.form-control:focus  {
    box-shadow: none;

}

#produto{
    width: 80%;
    height: 40px;
}

#quantidade{
    width: 20%;
    height: 40px;

}

#descricao_produto{
    height: 40px;
    width: 80%;

}

#botao_deletar{
    color: rgb(0, 0, 0) !important;
    border-radius: 5px !important;
    width: 20% !important;
    height: 40px;
    padding: 0 0 0 0 !important;

}

.hidden{
    display: none;
}

#descricao_endereco{
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #f32323;
}

.card-cartao-cartao{
    display: flex;
    flex-direction: row;
    padding: 10px 10px 10px 10px;
}

.card--cartao-presente{
    margin-bottom: 10px;
}

#valor_cartao_presente {
    width: 40%;
    height: 40px;
}

#quantidade_cartao, #botao_deletar_cartao{
    width: 30%;
    height: 40px;
}

#botao_deletar_cartao{
    height: 40px;
    padding: 0 0 0 0 !important;
    color: rgb(0, 0, 0) !important;
    border-radius: 5px !important;
}

.error {
    color: red;
    font-size: 14px;
}</pre></body></html>