/* Container for the entire page */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
}

/* Left section for the image */
.left-section {
    width: 50%; /* adjust the width as per your design */
    padding: 0; /* adjust the padding as per your design */
    box-sizing: border-box;
}

/* Right section for the login form */
.right-section {
    width: 50%; /* adjust the width as per your design */
    padding: 20px; /* adjust the padding as per your design */
    box-sizing: border-box;
}

/* Media query for smaller screens */
@media only screen and (max-width: 600px) {
    .left-section, .right-section {
        width: 100%; /* stack the sections on top of each other */
    }
}

/* Full-width inputs */
input[type=text], select[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 8px;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 5px;
  background: #F5F5F5;
}

/* Add a hover effect for buttons */
button:hover {
  opacity: 0.8;
  background-color: white;
  color: red;
  border-bottom: 2px solid red;
}

/* Center the avatar image inside this container */
.imgcontainer {
  text-align: center;
  margin: 24px 0 0 0;
}

/* Avatar image */
img.avatar {
  width: 20%;
}

