.qr-form {
    display: block;
}

.qr-form label {
    font-weight: 600;
    margin-top: 15px;
    display: block;
}

.qr-form input,
.qr-form textarea {
    width: 90%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
}
.qr-form {
    animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
