:root {
  --bg: #e6eef6;
  --card-bg: #ffffff;
  --text-dark: #0b1220;
}


body {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: var(--bg);
    color: var(--text-dark);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.card {
    max-width: 300px; 
    width: 100%;
    background-color: var(--card-bg);
    border-radius: 14px;
    box-shadow: 0 30px 40px rgba(14, 16, 20, 0.12);
    padding: 16px;
    text-align: center;
}

.qr-box {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.qr-img {
    max-width: 100%; 
    height: auto;
    object-fit: cover;
    display:block;
    border-radius:6px;
}

.card-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-desc {
    font-size: 15px;
    line-height:1.4;
    font-weight: 400;
    color: #6b7280;
}