 <style>
 
 
 
        @page {
            size: A4 landscape;
            margin: 0;
        }

        @font-face {
            font-family: 'Edwardian';
            src: url('edwardian.ttf') format('truetype');
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            background: #fff;
            display: flex;
        }

        .selecao-container {
            width: 350px;
            padding: 40px 30px;
            background: #f4f4f4;
            border-right: 2px solid #ccc;
            height: 100vh;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .selecao-container h2 {
            margin-bottom: 20px;
            font-size: 24px;
            color: #333;
        }

        input, button {
            width: 100%;
            padding: 12px;
            font-size: 16px;
            margin-top: 10px;
            border: 1px solid #ccc;
            border-radius: 8px;
            box-sizing: border-box;
        }

        button {
            background: linear-gradient(90deg, #f89e3b, #f2693c, #ea353c);
            color: white;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        button:hover {
            transform: scale(1.05);
        }

        .erro {
            color: red;
            margin-bottom: 15px;
        }

        .certificado-container {
            flex: 1;
            background: url('fundo.jpg') no-repeat center center;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .certificado-placeholder {
            font-size: 24px;
            color: #888;
        }
        
   
        
    .form-centered {
    position: fixed; /* Ocupa toda a tela */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95); /* Leve fundo para destacar o modal (opcional) */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999; /* Garantir que fique acima */
}


.painel-form-wrapper {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

        
        
        
        
        
        
        
        
        
        
        
    </style>