body {
    font-family: Arial, sans-serif;
    text-align: center;
}

.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.search-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.input-container {
    position: relative;
    width: 300px;
}

label {
    position: absolute;
    top: -10px;  /* Mantém o label acima */
    left: 15px;  /* Ajuste horizontal */
    font-size: 14px;
    font-weight: bold;
    background-color: white;
    padding: 0 5px;
    z-index: 1;
}

#searchInput {
    padding: 10px;
    font-size: 16px;
    width: 100%;  /* Para usar toda a largura da .input-container */
    border: 2px solid #ccc;
    border-radius: 20px 0 0 20px; /* Arredonda apenas o lado esquerdo */
    outline: none;
}

.rounded-btn {
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 0 20px 20px 0; /* Arredonda apenas o lado direito */
    font-size: 16px;
    cursor: pointer;
}

.rounded-btn:hover {
    background-color: #0056b3;
}

.dynamic-image {
    position: absolute;
    top: 10px;
    right: 10px; /* Canto superior direito */
    width: 100px;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}