*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
html,body {
    width: 100%;
    height: 100vh;

}
.register-container1{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:linear-gradient(#05183A,#022343c6);
    position: relative;
    overflow-y: scroll;
}
.container2{
    width:40vmax;
    /* min-height:70vh ; */
    border-radius: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.346);
    padding: 10px;
}
.container2 img{
    height: 10vh;
    margin-bottom: 2vh;
}
.container2 form{
   
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.container2 form input {
padding: .6vmax 2.2vmax;
margin: 10px;
border-radius: 5px;
outline: none;
color:black;
}
.container2 form div{
    text-align: center;
}
.container2 > h1{
font-size: 1vmax;
}
.container2 form  button{
    padding: 8px 64px;
    background-color: rgba(0, 0, 0, 0.743);
    border: none;
    border-radius: 25px;
    margin-bottom: 12%;
    font-size: 18px;
    font-weight: bold;
    color: whitesmoke;
    margin-top: 20px;
}
@media screen and (max-width:630px){
    .container2{
        border: none;
        width: 100%;
      
    }
    .container2 > h1{
        width: 100%;
        font-size: 2vmax;
        }

}
@media screen and (min-width:630px) and (max-width:880px){
    .container2{
        width:80%;
        border-radius: 5px;
    }

    .container2 > h1{
        font-size: 2vmax;
        }
}
@media screen and (min-width:880px) and (max-width:1210px) {
    .container2{
        width:50% ;
        min-height: 50vh;
        border-radius: 5px;
    }
    .container2 form{
        justify-content: center;
    
    }

}
@media screen and (min-width:1210px) and (max-width:1500px) {
    .container2{
        width:45% ;
        min-height: 50vh;

    }
    .container2 form{
        justify-content: center;
    
    }

}