CSS CODE FOR REGD-FORM

Category: coding By shahruhban01 on 10 May 2024

.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 10px;
}

.form {
display: flex;
flex-wrap: wrap;
justify-content: center;
/* border: 1px solid red; */
width: 350px;
padding: 10px;
}

.inp {
margin: 10px;
}

input[type=text], input[type=number], input[type=email] {
width: 150%;
height: 30px;
border-radius: 10px;
border: 1px solid grey;
font-size: 20px;
}

input[type=submit] {
width: 120px;
height: 40px;
border-radius: 10px;
border: none;
background: blueviolet;
color: white;
}

input[type=submit]:hover {
background: rgb(109, 36, 177);
}