@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    margin: 0;
    padding: 0;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
}
.container{
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0);
    background-image: url();
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.registrationblock{
    width: 95%;
    height: 80vh;
    background-color: white;
    display: flex;
}
.intro{
    height: 100%;
    width: 60%;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url(https://img.freepik.com/free-photo/charming-young-woman-working-freelance-remote-from-office-hold-laptop-typing-university-essay-turn-left-smiling-copy-space-joyful-browsing-web-using-computer_176420-36320.jpg?semt=ais_hybrid&w=740);

    background-size: COVER;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.intro h1{
    font-size: 60px;
    color: rgb(121, 195, 11);
}
.intro p{
    color: white;
}
.registrationmain{
    width: 40%;
    height: 100%;
    background-color:WHITE;
    display: flex;
    justify-content: center;
    align-items: center;
}
.registrationmain h2{
    font-size: 40px;
}
.form-control{
    width: 280px;
    height: 35px;
    margin: 5px;
    border-radius: 5px;
    outline: none;
    border: 1px solid orange;
}
button{
    width: 280px;
    margin: 5px;
    height: 35px;
    background-color: rgb(5, 78, 102);
    color: white;
}
@media only screen and (max-width:780px){
    .container{
        width: 100%;
        height: 1200px;
        background-color: rgb(35, 35, 35);
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .registrationblock{
        width: 100%;
        height: 90%;
        background-color: white;
        display: flex;
        flex-direction: column;
    }
    .intro{
        height: 50%;
        width: 100%;
        order: 2;
    
    }
    .registrationmain{
        width: 90%;
        height: 50%;
        order: 1;
    }
    .intro h1{
        font-size: 40px;
        color: rgb(121, 195, 11);
    }
    .intro p{
        color: white;
    }
}

