/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    position: relative;
}

.imgZone {
    text-align: center;
}

.logo {
    max-width: 200px;
    height: auto;
}

form ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

form li {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.form-group p {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.checkbox-group {
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="text"] {
    padding: 0.3rem 0.5rem;
    display: none;
    outline: none;
    border: none;
    border-bottom: #c00088 1px solid;
    background-color: #f5f5f5;
    flex: 1;
}



button#btnSubmit {
    background: linear-gradient(135deg, #e10098, #c00088);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: block;
    margin: 2rem auto 0;
}

button#btnSubmit:hover {
    background: linear-gradient(135deg, #c00088, #a00078);
    transform: scale(1.05);
}

.list-container{
    width: 100%;
    position: absolute;
    padding: 50px;
    top: 50px;
}

.list-container table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid black
}

td, th{
    text-align: center;
    padding: 0.5rem;
    border: 1px solid black;
}

.info-banner {
    background: linear-gradient(135deg, #e10098, #c00088);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}



@media (max-width: 600px) {
    .form-container {
        padding: 1rem;
    }

    .logo {
        max-width: 150px;
    }

    button#btnSubmit {
        width: 100%;
    }
}
