
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 0;
}

.consulta-box {
    max-width: 500px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.consulta-box h2 {
    text-align: center;
    font-size: 26px;
    color: #222;
    margin-bottom: 20px;
    font-weight: 600;
}

.consulta-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consulta-box input[type="text"] {
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
}

.consulta-box input[type="text"]:focus {
    border-color: #00bfa5;
    outline: none;
}

.consulta-box button {
    padding: 14px;
    background-color: #00bfa5;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.consulta-box button:hover {
    background-color: #00997a;
}

.consulta-box .resultado {
    background: #f1f3f5;
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    color: #222;
}

.consulta-box .resultado p {
    margin: 10px 0;
    font-size: 15px;
}

.consulta-box .resultado p span {
    font-weight: 600;
    color: #000;
}
