body{
    margin:0;
    padding:0;
    font-family:Arial, sans-serif;
    background-image:url("unaf.jpg");
    background-size: cover;
    background-position:center ;
    background-repeat:no-repeat ;
    margin:0;
    padding:20px;
    margin:0;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    }
    
    /* MAIN CARD */
    .container{
    display:flex;
    width:800px;
    height:450px;
    background:white;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
    }
    
    /* LEFT SIDE */
    .left{
    flex:1;
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    }
    
    .left h2{
    margin-bottom:10px;
    }
    
    .left p{
    color:gray;
    margin-bottom:20px;
    }
    
    /* INPUT */
    .left input{
    width:100%;
    padding:12px;
    margin:10px 0;
    border-radius:25px;
    border:1px solid #ddd;
    outline:none;
    }
    
    .left input:focus{
    border-color:#2d3ebc;
    }
    
    /* BUTTON */
    .left button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:25px;
    background:#2d3ebc;
    color:white;
    font-size:16px;
    cursor:pointer;
    margin-top:10px;
    transition:0.3s;
    }
    
    .left button:hover{
    background:#1f2fa3;
    }
    
    /* RIGHT SIDE IMAGE */
    .right{
 
    background:#000;
    }
    
    .right img{
    width: 450px;
    height:400px ;
  
    object-fit:cover;
    }