*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.main{
    width:1520px;
    height:730px;
    background-color: #CAF0F8;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-in{
    box-shadow: 0.5px 0.5px 20px rgb(72, 89, 92);
    display: flex;
    border-radius:10px;
    font-family: 'Times New Roman', Times, serif;
}
.main-left{
    width: 514.5px;
    height: 559.3px;
    background-color:#48cae4;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
#login{
    padding-top: 50px;
    padding-bottom: 20px;
}
.image{
    width: 514.5px;
    height: 55.93px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
    margin-left: 15px;
    color: #fff;
    background: linear-gradient(180deg,#3a0ca3,#7209b7,#f72585);
}
b{
    font-size:30px;
}
a{
    text-decoration: none;
    color: black;
}
.form{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.input
{
    width: 250px;
    height: 40px;
    background-color:white;
    border: none;
    border-radius: 4px;
}
button{
    width: 70px;
    height: 40px;
    margin-top: 12px;
    color: #fff;
    font-weight: bolder;
    border: none;
    border-radius: 50%;
    transition: .2s ease-in;
    margin-left: 20px;
    background: linear-gradient(180deg,#3a0ca3,#7209b7,#f72585);
}
.main-right{
    width: 514.5px;
    height: 559.3px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-image: url("se3.jpg");
    background-color: #03045e;
    background-size: cover;
    background-repeat: no-repeat;
}
@media screen  and (max-width:600px){
    .main{
        width:530px;
        height:1150px;
    }
    .main-in{
        display: flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
    }
    b{
        font-size:20px;
    }
    .main-left{
        width: 280px;
        height: 300px;
        border-radius:0px;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }
    .main-right{
        width: 280px;
        height:300px;
        border-radius:0px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    .img{
        width: 30px;
        height: 25px;
    }
    .input{
        margin-left: 15px;
        width:107px;
        height:15px;
        border-radius: 2px;
    }
    #login{
        padding-top: 20px;
        padding-bottom: 10px;
    }
    button{
        margin-left:35px;
        margin-bottom: 20px;
    }

   
}