Good day, I have a detail with a fieldset that I can not solve, I have named class to the fieldset and to the form with padding and width but it is still doing the responsive fieldset, and I want to have it fixed that is not responsive.
.frmingreso {
padding-right: 80px;
}
input {
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.btnenviar {
background-color: white;
color: black;
border: 2px solid #4CAF50;
}
.btnenviar:hover {
background-color: #59BDF2;
color: white;
}
<fieldset class="frmingreso">
<form action"login.php" method="POST">
Usuario:<br>
<input type="text" name="usuario"><br>
Contraseña:<br>
<input type="text" name="contrasena"><br><br>
<input type="submit" name="btnenviar" value="Entrar" class="btnenviar">
</fieldset>