body {
  background-color: #f4f4f4; /* Light grey background */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  margin: 0;
}
.topbar {
  background-color: #fff;
  /*      box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);*/
  padding: 10px 20px;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #e63946; /* Logo color */
}
.verification-container {
  text-align: center;
  padding: 20px;
/*  flex-grow: 1;*/
/*  display: flex;*/
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.image-container {
  width: 150px; /* Set the container width */
  height: 150px; /* Set the container height */
  overflow: hidden; /* Crop any overflowing parts */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa; /* Light background for better contrast */
  border: 2px solid #dee2e6; /* Optional: Add a subtle border for styling */
}

.image-container img {
  width: 100%; /* Ensure the image width fills the container */
  height: 100%; /* Ensure the image height fills the container */
  object-fit: cover; /* Scale and crop the image to cover the container */
}


footer {
  background-color: #e7e8e9;
  padding: 10px 20px;
/*      text-align: center;*/
  font-size: 0.9rem;
/*      box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);*/
}