*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.container{
    width: 1470px;
    height: 799px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #CAF0F8;
}
.register{
    width: 400px;
    height: 600px;
    background-color: #03045e;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
}
form{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
label{
    margin-top: 30px;
    font-size: 1.8rem;
    font-weight: bolder;
    color: #fff;
}
input{
    height:40px;
    width:270px;
    border-radius:7px;
    background-color:white;
    border: none;
}
button{
    width: 80px;
    height: 40px;
    font-weight: bolder;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s ease-in;
    background: linear-gradient(180deg,#3a0ca3,#7209b7,#f72585);
}
@media screen and (max-width:600px){
    .container{
        width:550px;
        height:1200px;
    }
}