/* Container do formulário */
.certificados-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px 25px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

/* Título */
.certificados-form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Parágrafo de instrução */
.certificados-form p {
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}

/* Campo de input */
.certificados-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: border 0.3s;
}

.certificados-form input[type="text"]:focus {
    border-color: #0073aa;
    outline: none;
}

/* Botão */
.certificados-form button {
    width: 100%;
    padding: 12px 0;
    background-color: #0073aa;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.certificados-form button:hover {
    background-color: #005177;
}

/* Lista de certificados encontrados */
.certificados-form ul {
    list-style: none;
    padding-left: 0;
}

.certificados-form ul li {
    background: #fff;
    margin-bottom: 10px;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

/* Link de download */
.certificados-form a {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
    transition: color 0.3s;
}

.certificados-form a:hover {
    color: #005177;
}

/* Mensagem de erro */
.certificados-form p strong {
    color: red;
}
