/* Reset some default styles */
body,
h1,
h2,
p {
  margin: 0;
  padding: 0;
  color: rgb(30, 51, 51);
}
a {
  text-decoration-line: none;
  color: cornflowerblue;
}

body {
  font-family: Arial, sans-serif;  
  background-color: #f0f0f0;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75vh;
  background-color: #f0f0f0;
}

.card {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 1440px;
  height: 400px;
}

@media (max-width: 768px) {
  .card {
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
  }
}

.left-side {
  flex: 1;
  background-color: #00bcd4;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 40px;
}

.left-side {
}

.left-side h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.left-side p {
  font-size: 18px;
}

.right-side {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.right-side h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.right-side p {
  font-size: 16px;
  margin-bottom: 10px;
}

.image {
  width: 100%;
  height: 100%;
}

.right-side .image-container {
  position: absolute;
  top: 20px;
  right: 20px;
}

.right-side .image-container-2 {
  position: absolute;
  top: 180px;
  right: 20px;
}

.right-side .image-container img {
  width: 100px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.right-side .image-container-2 img {
  width: 60px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.qr-container {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh;
}
