body {
    background-image: url('http://paletizar.com.br/wp-content/uploads/2024/06/IMG_8460.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 100vh;
}
.body-bg {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
}
.transparent-bg {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    width: 75%;
    max-width: 1200px;
    text-align: center;
    margin-top: 3em;
}
.transparent-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 77, 15, 0.5);
    z-index: -1;
    border-radius: 10px;
}
.label-left-bold {
    text-align: left !important;
    font-weight: bold !important;
}
.input {
    border: 1px solid #004d0f;
    border-radius: 5px;
    padding: 10px;
    color: #004d0f;
    background-color: #ffffff;
    width: 45%;
    margin-right: 10px;
    box-sizing: border-box;
}
.btn-buscar {
    background-color: #004d0f;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 3em;
    font-weight: bold;
}
#error-container {
    margin-top: 1em;
    text-align: center;
    display: none;
}
#error-message {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
#success-container {
    margin-top: 1em;
    text-align: center;
    display: none;
}
#success-message {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
h1 {
    font-size: 2rem;
    margin-bottom: 1em;
    font-weight: bold;
}
h2 {
    font-size: 1.3rem;
    margin-bottom: 2em;
}
@media (max-width: 768px) {
    .transparent-bg {
        width: 90%;
    }
    h1 {
        font-size: 1rem;
    }
    h2 {
        font-size: 0.5rem;
    }
}
select:focus {
    background-color: #d9ffe2;
    color: #004d0f; 
}
.input-group {
    display: none;
}