body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #f0f2f5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.container {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
}

select {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.dados {
    width: 90%;
    padding: 15px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin:10px 0;
}

.curso {
    width: 90%;
    padding: 15px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin:10px 0;
}

.checkbox-group label {
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
}
.checkbox-group input {
    margin-right: 8px;
}

/* ======= POP-UP DE SUCESSO ======= */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.modal-content h3 { color: green; }
.modal-content button {
  margin-top: 15px;
  padding: 8px 16px;
  background: green;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}


/* ===== Responsivo para mobile ===== */
@media (max-width: 600px) {

    body {
        display: block;
        background: #fff;
        height: auto;
    }

    .container {
        box-shadow: none;
        border-radius: 0;
        padding: 40px 20px;
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        border: none;
    }

    h2 {
        font-size: 48px;
        margin-top: 0;
        margin-bottom: 40px;
        line-height: 1.2;
    }

    label {
        font-size: 30px;
        margin-bottom: 20px;
    }

    select {
        font-size: 36px;
        padding: 25px;
    }
}
