* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {

    font-family: Arial, sans-serif;

    background: #f5f7fb;

    color: #222;

    min-height: 100vh;

    padding: 15px;

}

.container {

    width: 100%;

    max-width: 500px;

    margin: 0 auto;

    background: white;

    border-radius: 20px;

    padding: 25px;

    box-shadow:
            0 4px 20px rgba(0,0,0,0.08);

}

h1 {

    font-size: 28px;

    margin-bottom: 20px;

    color: #111;

    text-align: center;

    line-height: 1.3;

}

h2 {

    font-size: 22px;

    margin-bottom: 20px;

    line-height: 1.5;

    text-align: center;

}

p {

    margin-bottom: 18px;

    line-height: 1.6;

    color: #555;

}

.info-comprovante {

    background: #f1f5ff;

    border-radius: 15px;

    padding: 18px;

    margin-bottom: 25px;

    border: 1px solid #d7e3ff;

}

.info-comprovante strong {

    display: block;

    margin-bottom: 10px;

    font-size: 16px;

}

form {

    width: 100%;

}

input,
select {

    width: 100%;

    height: 56px;

    border: 1px solid #ddd;

    border-radius: 14px;

    padding: 0 16px;

    font-size: 16px;

    margin-bottom: 15px;

    outline: none;

    background: white;

    transition: 0.2s;

}

input:focus,
select:focus {

    border-color: #1e88e5;

    box-shadow:
            0 0 0 4px rgba(30,136,229,0.12);

}

button {

    width: 100%;

    min-height: 56px;

    border: none;

    border-radius: 14px;

    background: #1e88e5;

    color: white;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.2s;

    padding: 14px;

}

button:hover {

    opacity: 0.95;

}

button:active {

    transform: scale(0.98);

}

a {

    text-decoration: none;

}

#pagamento {

    text-align: center;

}

#pagamento img {

    width: 100%;

    max-width: 320px;

    margin: 20px auto;

    display: block;

    border-radius: 20px;

    background: white;

    padding: 10px;

    box-shadow:
            0 4px 16px rgba(0,0,0,0.08);

}

#dadosInscricao {

    margin-top: 25px;

    padding-top: 20px;

}

#dadosInscricao p {

    margin-bottom: 10px;

}

hr {

    border: none;

    border-top: 1px solid #eee;

    margin: 20px 0;

}

@media (max-width: 480px) {

    body {

        padding: 10px;

    }

    .container {

        padding: 20px;

        border-radius: 16px;

    }

    h1 {

        font-size: 24px;

    }

    h2 {

        font-size: 20px;

    }

    input,
    select,
    button {

        font-size: 16px;
    }
}
