@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');
*{
    padding: 0; /**/
    margin: 0;  /**/
    box-sizing: border-box; /**/
    font-family: 'Poppins', sans-serif; /**/
}
body{
    background-color:#EBEDEF; /**/
    background-position: center; /**/
    background-repeat: no-repeat; /**/
    background-size: cover; /**/
    display: flex; /**/
    align-items: center; /**/
    justify-content: center; /**/
    padding: 20px; 
    min-height: 100vh; /**/
}
.bg {
    animation:slide 3s ease-in-out infinite alternate; /**/
    background-image: linear-gradient(-60deg, rgb(225, 237, 255) 50%, #88a4f1 50%, #77c2f5 50%); /**/
    bottom:0; /**/
    left:-50%; /**/
    opacity:.5; /**/
    position:fixed; /**/
    right:-50%; /**/
    top:0; /**/
    z-index:-1; /**/
}
  
.bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
}
  
.bg3 {
    animation-duration:5s;
}

@keyframes slide {
    0% {transform:translateX(-25%);}
    100% {transform:translateX(25%);}
}
.w50{
    width: 50%;
    float: left;
    padding-right: 15px;
}
.box{
    display: flex;
    width: 700px;
}
.img-box{
    background-color: #f6f7fc;
    width: 70%;
    display: flex;
    align-items: center;
    padding: 40px;
    border-radius: 5px  0 0 5px; 
    border: 1px solid rgb(155, 154, 154);
}
.img-box img{
    width: 230px;
    height: 200px;
}
.form-box{
    background-color:  rgb(140, 163, 228);
    backdrop-filter: blur(40px);
    padding: 20px 25px;
    width: 100%;
    border-radius: 0 5px 5px 0;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
.form-box h2{
    font-size: 22px;
}
.form-box p{
    font-weight: bold; 
    color: #3D3D3D;
}
.form-box p a{
    color: #ffffff;
    text-decoration: none;
}
.form-box form{
    margin: 10px 0;
}
form .input-group{
    margin-bottom: 15px;
}
form .input-group label{
    color: #3D3D3D;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
form .input-group input{
    width: 100%;
    height: 27px;
    background-color: #ffffff52;
    border-radius: 20px;
    outline: none;
    border: 2px solid transparent;
    padding: 15px;
    font-size: 15px;
    color: #616161;
    transition: all 0.4s ease;
}

form .input-group input:focus{
    border-color: #000000;
}
form .input-group button{
    width: 100%;
    height: 47px;
    background: #5464a3;
    border-radius: 20px;
    outline: none;
    border: none;
    margin-top: 15px;
    color: white;
    cursor: pointer;
    font-size: 18px;
}
form .input-group button:hover{
    padding: 0.4rem;
    width: 100%;
    background: linear-gradient(to left, #364ca5, #364ca5);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 20px;
    transition: all 0.3s ease
}
@media (max-width:930px) {
    .img-box{
        display: none;
    }
    .box{
        width: 700px;
    }
    .form-box{
        width: 100%;
        border-radius: 20px;
    }
}
@media (max-width:500px) {
    .w50{
        width: 100%;
        padding: 0;
    }
}