/* Estilos globais */
body {
    background-image: url('fundo-desfocado.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: auto;
}

/* Container principal */
.container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* Cabeçalho */
header {
    text-align: center;
    margin-bottom: 20px;
}

header .logo {
    max-width: 280px;
    margin-bottom: 15px;
}

header h1 {
    color: #c04000;
    font-size: 24px;
    margin: 0;
}

/* Estilos dos rótulos e entradas */
label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

/* Botão de envio */
input[type="submit"] {
    background-color: #32CD32;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

input[type="submit"]:hover {
    background-color: #228B22;
    transform: scale(1.05);
}

/* Resultado da consulta */
#resultado {
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    font-size: 15px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.resultado-box {
    margin: 0;
    padding: 0;
    list-style: none;
}

.resultado-box li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.resultado-box li strong {
    color: #333;
    display: inline-block;
    width: 150px;
}

/* Badge de status */
.status-badge {
    display: inline-block;
    padding: 8px 15px;
    margin-top: 15px;
    font-weight: bold;
    border-radius: 20px;
    font-size: 14px;
}

/* Diferenciação por status */
.status-pendente .status-badge {
    background-color: #fff3cd;
    color: #856404;
}

.status-analise .status-badge {
    background-color: #cce5ff;
    color: #004085;
}

.status-aprovado .status-badge {
    background-color: #d4edda;
    color: #155724;
}

.status-rejeitado .status-badge {
    background-color: #f8d7da;
    color: #721c24;
}

.status-desconhecido .status-badge {
    background-color: #e2e3e5;
    color: #383d41;
}

/* Botão de voltar */
.btn {
    background-color: #32CD32;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
    margin-top: 25px;
}

.btn:hover {
    background-color: #228B22;
    transform: scale(1.05);
}
