/* Fundo geral */
body {
    background: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Container do formulário */
.container {
    max-width: 600px;
    margin: 48px auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(163,30,88,0.10);
    padding: 36px 28px 28px 28px;
}

/* Título */
.container h2 {
    color: #8a1e58;
    text-align: center;
    margin-bottom: 28px;
    font-weight: 900;
    font-size: 2em;
    letter-spacing: 1px;
}

/* Grupos do formulário */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    color: #7e2e84;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 1.05em;
}

.form-group small {
    color: #888;
    font-size: 0.97em;
}

/* Inputs e textarea */
.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0d6e6;
    border-radius: 6px;
    font-size: 1em;
    background: #faf7fa;
    color: #333;
    transition: border 0.2s;
    margin-top: 2px;
}

.form-control:focus {
    border-color: #8a1e58;
    outline: none;
    background: #fff;
}

/* Radio buttons */
.form-group input[type="radio"] {
    accent-color: #8a1e58;
    margin-right: 4px;
}

/* Botão de envio */
.btn-inscricao {
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(90deg, #8a1e58 0%, #7e2e84 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.15em;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 18px;
    box-shadow: 0 2px 8px rgba(163, 30, 88, 0.08);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-inscricao:hover, .btn-inscricao:focus {
    background: linear-gradient(90deg, #a23c74 0%, #5e1d63 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(163, 30, 88, 0.14);
}

/* Responsivo */
@media (max-width: 700px) {
    .container {
        padding: 18px 4vw 18px 4vw;
    }
    .container h2 {
        font-size: 1.3em;
    }
}