/* Background*/
       
        body{
            background-color: lightblue;
            background-size: 100% 100%;
        }

        .shape{
            background-color: azure;
            max-width : 550px;
            width: 40%;
            height: 450px;
            border: 3px solid darkblue;
            border-radius:  7px;
            box-shadow: 0px 5px 20px lightcoral; 
            margin:  50px 100px 10px 90px;
            padding: 25px 30px;
            position: relative;
            left: 80px;
            top: 2px;
        }
            
        input[type="text"]{ 
        width:  100%;
        }

        h3{
            text-align: center;

        }
        
       
        
        
