
           *{
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                font-family: Arial, sans-serif;
            }
          body{
                height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            h1{
                text-align: center;
                margin-bottom: 10px;    
                font-size: 18px;
                color: #b43636;
            }
            p{
                text-align : center;
                font-size: 10px;
                color: #302929;   
            }
          
            .container{
                display: flex;
                flex-direction: column;
                width: 280px;
                padding: 15px;
                border: 5px solid rgb(116, 178, 202);
                border-radius: 10px;
            }
            .la{
                border:none;
            }
            
            input{
                margin: 5px 0px;
                height: 20px;
                padding: 5px;
            }
            #user{
                font-size: 14px;
                color: #333;
                border: solid 1px rgb(4, 6, 7);
            }

            button{
                
                height: 30px;
                width: 70px;
                margin: 5px 0px;
                background-color: rgb(5, 110, 49);
                border: none;
                border-radius: 8px;
                color: #f8f4f4;
            }
            button:hover{
                background-color: #333;
                color: skyblue;
            }
