body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #1e1e2f, #2a2d4a);
    color: #fff;
}


/* Container (Glassmorphism) */

.container {
    max-width: 600px;
    margin: 80px auto;
    padding: 32px;
    backdrop-filter: blur(22px);
    background: rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}


/* Text Styling */

h1 {
    margin-top: 0;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.muted {
    text-align: center;
    opacity: 0.75;
    font-size: 14px;
    margin-bottom: 30px;
}


/* Form Elements */

.form-row {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input[type="text"] {
    padding: 14px 16px;
    border-radius: 14px;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 16px;
    transition: 0.3s ease;
}

input[type="text"]:focus {
    background: rgba(255, 255, 255, 0.13);
}


/* Buttons */

.btn {
    padding: 14px 22px;
    font-size: 16px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    background: rgba(0, 136, 255, 0.5);
    color: #fff;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn:hover {
    background: rgba(0, 136, 255, 0.7);
    transform: translateY(-2px);
}

.form-row button {
    width: 100%;
}


/*  QR Canvas Output */

#qrCanvas {
    margin-top: 25px;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}