body {
    background-color: blanchedalmond;
}

.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none !important;
    border-top: 4px solid brown !important;
    border-radius: 10px !important;
    background-color: white !important;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(165, 42, 42, 0.2);
}

input.form-control {
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    padding-left: 0;
    transition: border-bottom-color 0.3s;
    background-color: transparent;
}

input.form-control:focus {
    box-shadow: none;
    border-bottom-color: brown;
}

label {
    color: brown;
    font-weight: bold;
    font-size: 0.8rem;
}

h2 {
    color: black;
    font-weight: bold;
}

.resultado {
    color: brown !important;
    font-weight: bold;
}