@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');
*{
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
.container{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
background: #e4e4ee;
}
.form{
width: 35%;
padding: 20px;
border-radius: 10px;
background: #ffff;
}
.form .header{
color: #9a5bf8;
text-align: center;
padding-bottom: 12px;
}
.field1,.field2,.message{
width: 100%;
display: flex;
align-items: center;
padding-bottom: 20px;
}
.field{
padding-left: 10px;
}
.field input{
color: blue;
height: 40px;
margin-right: 70px;
padding-left:5px ;
width: 100%;
font-size: large;
outline: none;
border: none;
border-radius: 5px;
}
.message input{
background: #b380ff;
color: blue;
height: 60px;
width: 100%;
font-size: large;
outline: none;
border: none;
margin-left: 10px;
border-radius: 7px;
padding-left: 5px;
}
.f-1 input{
background: #d1b3ff;
}
.f-2 input{
background: #c299ff;
}
button{
cursor: pointer;
height: 45px;
border-radius: 10px;
background: blue;
color: #ffff;
font-size: large;
border: none;
width: 50%;
margin-left: 10px;
}
p{
margin-left: 10px;
font-size: medium;
margin-top: 10px;
}