*
{
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;

}
body
{
height: 100vh;
width: 100%;
background: orange;
}
.container
{
    position: absolute;
    top: 40%;
    left: 50%;
    border-radius: 30px;
    transform:  translate(-50%, -50%);
}
.container
{
 background: black;
 color: azure;
 width: 410px;
 padding: 30px;
 box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.container .text
{
    font-size:35px;
    font-weight: 600;
    text-align: center;
}
.container form
{
margin-top: -20px;
}
.container form .data
{
   height: 45px;
   width: 100%;
   margin: 40px 0; 
}
form .data label
{
font-size: 18px;
}
form .data input
{
height: 100%;
width: 100%;
padding-left: 10px;
font-size: 17px;
}
form .btn
{
    margin: 30px 0;
    height: 45px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
form .btn .inner
{
   height: 100%;
   width: 300%;
   position: absolute;
   left: -100%;
   z-index: -1;
   transition: all 0.4s;
   background: -webkit-linear-gradient(right, orange,orange,orange,orange);
}
form .btn:hover .inner
{
 left: 0;
}
form .btn button
{
height: 100%;
width: 100%;
background: none;
border: none;
border-radius: 30px;
color: black;
font-size: 18px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
}