body{
font-family: Arial;
background:#f0f2f5;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
background-image: url('bg1.jpg');
}

.float-left-image {
  float: left;
  margin-right: 15px; /* Adds space between image and text */
}


.login-container{
background:white;
padding:60px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
width:300px;
text-align:center;
}

input{
width:100%;
padding:10px;
margin:10px 0;
border:1px solid #ccc;
border-radius:5px;
}

button{
width:100%;
padding:10px;
background:#0073e6;
border:none;
color:white;
border-radius:5px;
cursor:pointer;
}

button:hover{
background:#0055b3;
}
