Boa tarde!
Ao adicionar um "fieldset" no assunto "Outro", ele passou a estar em uma nova linha. Sabem dizer por gentileza o que fiz de errado?
<form>
<fieldset>
<legend>Dados Pessoais</legend>
<label for="nome">Nome:</label>
<input pattern="[A-Za-z '] {4, }" id="nome" name="nome" placeholder="Seu nome" type="text" autofocus required title="Preencha o campo com o formato requisitado: O nome precisa ter pelo menos 4 caracteres">
<label for="email">E-mail:</label>
<input id="email" name="e-mail" placeholder="seu@email.com" type="email" required>
</fieldset>
<fieldset>
<legend>Assunto</legend>
<label>
<input type="radio" name="assunto" value="blog">
Blog
</label>
<label>
<input type="radio" name="assunto" value="serviço">
Serviço
</label>
<fieldset>
<input type="radio" name="assunto" value="Outro" id="outro">
<label for="Outro">Outro</label>
<input type="text" name="outro-assunto">
</fieldset>
</fieldset>
<label for="mensagem">Mensagem</label><br/>
<textarea name="msg" id="mensagem" cols="60" rows="10" placeholder="Escreva aqui sua mensagem"></textarea>
<button type="submit">Enviar</button>
</form>