body {
   margin: 0;
   padding: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   background-image: url('IMAGE.jpg');
   background-repeat: no-repeat; 
   background-size: cover; 
   }
   .white-section {
       background-color: white;
       padding: 20px; 
       text-align: center;
       height: 330;
       max-width: 400px; 
       display: flex;
       flex-direction: column;
       align-items: flex-start; 
   }
   .user-icon,
   .password-icon,
   .phone-icon {
       width: 30px;
       height: 30px;
       margin-right: 10px;
   }
   .login-button {
       background-color: rgb(213, 64, 64);
       color: #fff;
       border-radius: 14px;
       height: 30px; /* Set height */
       width: 100px; /* Set width */
   }
   
   .login-button:hover {
       background-color: rgb(175, 227, 62);
   }