.logo-card-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 286px;
}

.img-box {
  width: 200px; /* Set the width of the image box */
  height: 120px; /* Set the height of the image box */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.card-custom-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.text-box {
  width: 200px; /* Set the width of the text box */
  height: 140px; /* Set the height of the text box */
}

.button-box {
  width: 200px; /* Set the width of the button box */
  height: 50px; /* Set the height of the button box */
}

/* Ensure the image fits within the box proportionally */
.img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Ensures the image is scaled proportionally */
}

.custom-container {
  max-width: 760px;
}

.card-separator {
  margin-top: 24px;
  margin-bottom: 24px;
  background-color: #e8e8e8;
  width: 1px;
}
.custom-message h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}
.custom-message {
  margin-top: 20px;
  background: #e8e8e8;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body {
  color: #333333;
  background-color: #f5f5f5;
  background-image: linear-gradient(to bottom, #f9fbfd 0, #fff 100%);
}
