body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

a {
  text-decoration: none;
  border-bottom: 1px solid #F9B3CF;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.text-container {
    color: #062D56;
    width: 50%;
    padding: 20px;
}


.text-container h1 {
    background: linear-gradient(251.16deg, #F9B3CF 15.1%, #00A2FF 100.82%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 4px 74px #e9e7e2;
}

.qr-container {
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(251.16deg, #F9B3CF 1.1%, #062D56 100.82%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 4px 74px #e9e7e2;
}

.qr-container img {
    display: block;
    max-width: 50%;
    height: auto;
    margin: 20px auto;
    border: 4px solid #F9B3CF;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 2s;
}

/* adjust styles for smaller screens */
@media (max-width: 1050px) {
  .qr-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .qr-container img {
    margin: 10px auto;
  }
}

.qr-container input[type="checkbox"] {
    display: none;
}

.qr-container input[type="checkbox"]:checked + label img {
    transform: rotate(360deg);
}

.qr-code-text {
    width: 450px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* set a fixed height for the container */
}

.qr-code-text p {
    text-align: center;
    margin: 0;
    color: #062D56;
    word-break: break-all;
}
