*:before,
*:after{
	box-sizing: border-box;
}
*{
	margin: 0;
	padding: 0;
	position: relative;
	box-sizing: border-box;
}
body{
    width: 100%;
    display: flex;
    min-height: 100vh;
    background: #0f2229;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    padding: 1rem;
}
footer {
    padding: 10px;
}
.container{
    width: calc(768px - 1rem);
    background: #92559E;
    color: #F1F0F7;
    padding: 16px;
    border-radius: 10px;
}
.container h4{
    font-weight: 400;
    font-size: 1.5rem;
    text-align: center;
}
.container .form{
    position: relative;
    width: 100%;
    margin: 2rem 0;
}
.container .form input{
    width: 100%;
    background: DC99F0;
    border: none;
    outline: none;
    padding: 15px 145px 15px 12px;
    border-radius: 10px;
    color: #180466;
    font-size: 1.2rem;
}
.container .form button{
    position: absolute;
    padding: 12px;
    border-radius: 10px;
    font-size: 1.2rem;
    color: #F2F0F2;
    border: none;
    outline: none;
    background: #DC99F0;
    right: 3px;
    top: 3px;
    cursor: pointer;
}
.container .nameBox{
    position: relative;
    background: #92559E;
    border-radius: 10px;
    padding: 12px;
}
.container .nameBox span{
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: capitalize;
    letter-spacing: .3px;
}